"""Exercise 9.6.4 — Loop condition

Chapter 9: Control Flow — Everyday Programming

This program should print the numbers 1 through 5.

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

count = 1

while count < 5:
    print(count)
    count += 1
# Expected: 1 2 3 4 5
