"""Exercise 5.3.1 — Is it freezing?

Chapter 5: Data Structures — Everyday Programming

Water freezes at 0 degrees Celsius. The program should report True when
the temperature is below freezing. With temp = -5 it should print True.

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

temp = -5
is_freezing = temp > 0
print(is_freezing)   # True
