"""Solution 7.1.2 — Rectangle area

Chapter 7: Operators — Everyday Programming

Bug type: Logical

Area is length times width, but the program adds them, giving 8 instead
of 15. Use * instead of +.

Exercise: ex_7_1_2.py
"""

length = 5
width = 3
area = length * width
print(area)   # 15
