print("Hello World")
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!")