This is the code:
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the solve function below.
def solve(meal_cost, tip_percent, tax_percent):
    tip = meal_cost * (tip_percent / 100)
    tax = meal_cost * (tax_percent / 100)
    total_cost = meal_cost + tip +tax 
    print(round(total_cost, 2))
if name == '__main__':
    meal_cost = float(input())
    tip_percent = int(input())
    tax_percent = int(input())
    #ron = round(total_cost)
    #print(ron)
    solve(meal_cost, tip_percent, tax_percent)