"""Exercise 20.11.2 — Printing each day's high

Chapter 20: Common Pitfalls — Everyday Programming

This program should print all four recorded high temperatures.

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

highs = [28, 30, 29, 31]
for i in range(5):
    print(highs[i])
