# Arup Guha
# 5/13/2022
# First Program with an Arithmetic Expression.
# Buying Bananas

# Bananas, we are going to buy 6 of them at 49 cents each.
num_bananas = 6
banana_price = 0.49

# 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, sep="")
