# Arup Guha
# 8/27/2020
# Girl Scout Cookies Version 1

numBoxes = int(input("How many boxes of cookies have you sold?\n"))
costPerBox = int(input("What is the cost in dollars for one box?\n"))

# Calculate the total revenue.
total = numBoxes*costPerBox

# Display revenue.
print("You got a total of",total,"dollars selling cookies!")
