You are viewing a single comment's thread. Return to all comments →
def solve(meal_cost, tip_percent, tax_percent):
tip = (meal_cost/100)* tip_percent tax = (tax_percent/100)* meal_cost total_cost = round(meal_cost+tip+tax) print(total_cost)
if name == 'main': meal_cost = float(input().strip())
tip_percent = int(input().strip()) tax_percent = int(input().strip()) solve(meal_cost, tip_percent, tax_percent)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →
def solve(meal_cost, tip_percent, tax_percent):
if name == 'main': meal_cost = float(input().strip())