# YOUR THIRD MINI PROJECT — BMI Calculator
# Formula: BMI = weight (kg) / height (m)²

# ─────────────────────────────────────────────
# PART 1 — Basic BMI calculation
# ─────────────────────────────────────────────

# TODO: Ask the user for their weight in kg
weight = ...

# TODO: Ask the user for their height in meters
height = ...

# TODO: Calculate BMI using the formula
bmi = ...

# TODO: Print the result with 1 decimal place
# Expected output: "Your BMI is 22.9"
print(...)

# ─────────────────────────────────────────────
# PART 2 — Add the category
# ─────────────────────────────────────────────

# TODO: Use the if/elif/else block below
# Fill in the correct BMI ranges
# Underweight: BMI < 18.5
# Normal weight: 18.5 - 24.9
# Overweight: 25 - 29.9
# Obese: 30+

if bmi < ...:
    print("Underweight")
elif bmi < ...:
    print("Normal weight")
elif bmi < ...:
    print("Overweight")
else:
    print("Obese")

# ─────────────────────────────────────────────
# PART 3 — Going further (optional)
# ─────────────────────────────────────────────

# TODO: Print a full summary using an f-string
# Expected output:
# "Name: Bull | Weight: 70kg | Height: 1.75m | BMI: 22.9 | Category: Normal weight"

name = input("Enter your name: ")
# Use the values from Part 1 and 2
print(...)
