"""Exercise 7.1.2 — Rectangle area

Chapter 7: Operators — Everyday Programming

This program should compute the area of a rectangle (length times width)
and print 15.

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

length = 5
width = 3
area = length + width
print(area)   # expected: 15
