"""Exercise 10.3.5 — Use the returned value

Chapter 10: Functions — Everyday Programming

This program should print the square of 6, which is 36.

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

def square(side):
    return side * side

square(6)
print(area)  # 36
