Answer:
charge = float(input()) 
tip = charge*0.18 
tax = charge*0.07 
 
print('tip:',round(tip)) 
print('tax:',round(tax)) 
print('total:',round(charge+tip+tax))
Step-by-step explanation:
Step 1 read the user charge
charge = float(input()) 
Step 2 calculate the tip and taxes
tip = charge*0.18 
tax = charge*0.07 
step 3 show results
print('tip:',round(tip)) 
print('tax:',round(tax)) 
print('total:',round(charge+tip+tax))