"""Solution 20.9.3 — Compound growth

Chapter 20: Common Pitfalls — Everyday Programming

Bug type: Logical

2 ^ 10 is XOR (8), not 2 to the tenth. Use for exponentiation.

Exercise: ex_20_9_3.py
"""

print(2 ** 10)  # 1024
