"""Exercise 18.3.1 — Rectangle area

Chapter 18: Bugs — Everyday Programming

This program should print the area of a 6 by 4 rectangle.

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

def area(length, width):
    return length + width

print(area(6, 4))   # expected: 24
