• + 0 comments
    def solve(meal_cost, tip_percent, tax_percent):
        tip=(meal_cost/100)*tip_percent
        tax=(tax_percent/100)*meal_cost
        t=round(meal_cost+tax+tip)
        print(t)