"""Exercise 9.5.5 — Three repetitions

Chapter 9: Control Flow — Everyday Programming

This program should print Hello exactly three times.

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

for count in range(3):
    print("Hello")
    print(count)
# Expected: Hello printed 3 times
