"""Exercise 9.5.1 — Counting to five

Chapter 9: Control Flow — Everyday Programming

Using range, this program should print the numbers 1 through 5.

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

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