Guess the Output
What does this program do?
def main():
price = input("Enter the cost of your item: ")
cashPaid = input("Enter the amount you paid the cashier: ")
change = cashPaid - price
print "Your change is $%4.2f." % change
main() # execute the main function