print ("How much does your meal cost")
meal = 0
tip = 0
tax = 0.0675
action = input( "Type amount of meal ")
if action.isdigit():
    meal = (action)
    print (meal)
tips = input(" type the perentage of tip you want to give ")
if tips.isdigit():
    tip = tips 
    print(tip)
I have written this but I do not know how to get
print(tip)
to be a percentage when someone types a number in.
 
     
     
     
     
     
    