Answer:
total = 0
hamburgers = int(input("Enter the number of hamburgers: "))
fries = int(input("Enter the number of fries: "))
drinks = int(input("Enter the number of drinks: "))
total = (hamburgers * 2.0) + (fries * 1.5) + (drinks * 1.00)
print("The total cost of the order is: " + str(total))
Explanation:
- Ask the user for the inputs
- In order to find the total cost, multiply each order cost with the number of orders. Then sum the each result.
- Print the total cost