name = input("enter your name: ") print("The type of name is",type(name)) inBank = input("enter the amount of money you have in the bank: ") print("The type of inBank is",type(inBank)) inStocks = input("enter the amount of money you have in stocks: ") # "input" *always* returns a string. # We need to convert the numbers into ints or floats if we want to add them totalMoney = int(inBank) + int(inStocks) print("You have",totalMoney,"money") # We'll learn how to make this look better later