"""Exercise 9.9.3 — Doing nothing where logic was needed

Chapter 9: Control Flow — Everyday Programming

This program should add up the prices and print the total, 60, but the
loop body was left as a placeholder.

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

prices = [10, 20, 30]
total = 0

for price in prices:
    pass

print(total)
# Expected: 60
