Code viewer for World: Activity 1.5
# ============================================================
# SECTION 5 — Exercise
# ============================================================
# Write a program that:
#   1. Asks the user for a temperature in Celsius
#   2. Converts it to Fahrenheit:  F = (C x 9/5) + 32
#   3. Prints both values with a clear label
#
# Expected output (if the user types 25):
#   25.0 degrees C is equal to 77.0 degrees F

# Write your solution here: