"""Exercise 9.5.3 — Counting down

Chapter 9: Control Flow — Everyday Programming

This program should count down from 5 to 1.

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

for number in range(5, 0):
    print(number)
# Expected: 5 4 3 2 1 (one per line)
