"""Exercise 20.4.5 — Using a price before defining it

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the total cost of 3 notebooks.

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

quantity = 3
print(quantity * price)
price = 2
