# YOUR FIRST MINI PROJECT — Username Generator
# Use everything you've learned so far to complete this exercise

# ─────────────────────────────────────────────
# PART 1 — Basic username
# ─────────────────────────────────────────────

# TODO: Ask the user for their name
name = ...

# TODO: Ask the user for their birth year
year = ...

# TODO: Clean the name — remove spaces and make it lowercase
name_clean = ...

# TODO: Take only the last 2 digits of the year
year_short = ...

# TODO: Combine them into a username and print it
# Expected output: "Your username is: bull01"
username = ...
print(...)

# ─────────────────────────────────────────────
# PART 2 — Add a prefix
# ─────────────────────────────────────────────

# TODO: Add "rhd_" at the beginning of the username
# Expected output: "Your username is: rhd_bull01"
username_prefixed = ...
print(...)

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

# TODO: Ask the user for their favorite number
# Add it at the end of the username
# Expected output: "Your username is: rhd_bull01_7"
favorite_number = ...
username_extended = ...
print(...)
