"""Exercise 20.9.4 — Volume of a cube

Chapter 20: Common Pitfalls — Everyday Programming

This program should print the volume of a cube with edge 3 (edge cubed).

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

edge = 3
volume = edge ^ 3
print(volume)  # 27
