"""Exercise 20.9.3 — Compound growth

Chapter 20: Common Pitfalls — Everyday Programming

This program should print 2 raised to the tenth power.

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

print(2 ^ 10)  # 1024
