"""Exercise 18.1.5 — Counting change

Chapter 18: Bugs — Everyday Programming

This program should print each coin value in a small pile of change.

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

coins = [25, 10, 5, 1]
for coin in coins:
print(coin)
