# Arup Guha
# 5/13/2022
# Second Program with an Arithmetic Expression.
# Buying Bananas - Getting user input.

# What makes variables powerful, is that we can put different
# values in them each time we run the program, and the program
# will work for those values.
num_bananas = int(input("How many bananas do you want? "))
banana_price = float(input("How much does one banana cost? "))

# We can multuply the value of the two variables, store them in a third,
# and print it!
total_price = num_bananas*banana_price
print("The total cost is", total_price, "dollars.")
