# ============================================================
# SECTION 7 — Exercise
# ============================================================
# Write a program that:
# 1. Asks the user to enter a temperature in Celsius
# 2. Uses try/except to catch invalid input
# 3. If the input is valid, print one of these messages:
# Below 0 -> "Freezing"
# 0 to 15 -> "Cold"
# 16 to 25 -> "Mild"
# 26 to 35 -> "Warm"
# Above 35 -> "Hot"
#
# Expected output (if the user types 22):
# Mild
# Write your solution here: