Skip to content

Instantly share code, notes, and snippets.

View michaelgobz's full-sized avatar
🎯
Focusing

Michael Goboola michaelgobz

🎯
Focusing
View GitHub Profile
@michaelgobz
michaelgobz / test.html
Created June 17, 2025 19:18
Hello World Html.
<html>
<head>
<style>
h1 {
font-family: Calibri;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
@michaelgobz
michaelgobz / test.md
Last active June 17, 2025 19:19
Hello World Markdown

Hello World

This is content converted from Markdown!

Here's a JSON sample:

{
  "foo": "bar"
}
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)