"""Exercise 18.1.4 — Weekly distance

Chapter 18: Bugs — Everyday Programming

This program should print the total distance walked over three days.

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

monday = 3.2
tuesday = 4.1
wednesday = 2.7
total = monday + tuesday wednesday
print(total)   # expected: 10.0
