"""Solution 20.9.2 — Cube of a number

Chapter 20: Common Pitfalls — Everyday Programming

Bug type: Logical

4 ^ 3 computes XOR (7), not 4 cubed. Use .

Exercise: ex_20_9_2.py
"""

base = 4
print(base ** 3)  # 64
