This is my code:
def totalPrice(meal, tip):
meal = input("What was your total meal price?")
tip = input("What would you like to tip?")
total_bill = meal * (tip/100) + meal
return total_bill
print(totalPrice(meal,tip))
When I run it, nothing happens. I'm curious as to why my input is not printing in the console and where the error is happening.