This is content converted from Markdown!
Here's a JSON sample:
{
"foo": "bar"
}| <html> | |
| <head> | |
| <style> | |
| h1 { | |
| font-family: Calibri; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Hello World!</h1> |
| def solve(meal_cost, tip_percent, tax_percent): | |
| if __name__ == '__main__': | |
| meal_cost = float(input()) | |
| tip_percent = int(input()) | |
| tax_percent = int(input()) | |
| total = (meal_cost*(tip_percent/100) + meal_cost*(tax_percent/100) + meal_cost) | |
| solve(meal_cost, tip_percent, tax_percent) |