Assignment
Assignment
small_containers = int(input("Enter the number of containers holding one liter or less: "))
large_containers = int(input("Enter the number of containers holding more than one liter: "))
refund = (0.10 * small_containers) + (0.25 * large_containers)
print("The refund amount is $", format(refund, ".2f"))