Answer
code
Work Step by Step
We want a a program that reads the subtotal and the gratuity rate and computes the gratuity and total.
$Code:$
Total=float(input("Enter the total "))
Gravity=float(input("Enter Gravity Rate:"))
Gravity=Total*(Gravity/100)
Total=Total+Gravity
print("The gravity is",Gravity," The total is ",Total)