"""Exercise 5.2.5 — Celsius to Fahrenheit

Chapter 5: Data Structures — Everyday Programming

The program converts 100.0 degrees Celsius to Fahrenheit and should
print 212.0.

This program contains exactly one bug. Solution: sol_5_2_5.py
"""

celsius = 100.0
fahrenheit = celsius * 9 / 5 - 32
print(fahrenheit)   # 212.0
