"""Exercise 20.9.2 — Cube of a number

Chapter 20: Common Pitfalls — Everyday Programming

This program should print 4 raised to the third power.

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

base = 4
print(base ^ 3)  # 64
