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))
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))