print("Hello World")
Hello World

Calculator for how many mcflurrys you can afford:

print("How much money do you have? (Numbers only please)")
wallet = float(input())
priceOfMcflurry = 2.39
amountOfMcflurrys = wallet/priceOfMcflurry

print("You have $" + str(wallet) + " and each mcflurry costs $" + str(priceOfMcflurry) + ", so you can afford " + str(amountOfMcflurrys) + " mcflurrys!")
How much money do you have? (Numbers only please)
You have $7.17 and each mcflurry costs $2.39, so you can afford 3.0 mcflurrys!