"""Exercise 18.3.3 — Counting to ten

Chapter 18: Bugs — Everyday Programming

This program should print the numbers 1 through 10.

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

for number in range(1, 10):
    print(number)
