"""Exercise 20.2.4 — Over-indented statement

Chapter 20: Common Pitfalls — Everyday Programming

This program should print whether water is boiling at the given
temperature.

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

temperature = 100
if temperature >= 100:
        print("Boiling")
    print("Done checking")
