# Instead of entering the value of the meal into our code, we're going to make the variable "meal" equal to some user input.
meal = input()
tax = 0.08875 # This is New York City + State Sales Tax
tip = 0.15

meal = meal + meal * tax # Notice I can have comments next to code

total = meal + meal*tip

print("%.2f" % total) # We then print() the total.

Try it here: