"""Exercise 20.5.4 — Misspelled variable when updating

Chapter 20: Common Pitfalls — Everyday Programming

This program should add a tip to a restaurant bill and print the total.

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

bill = 40
tip = 6
total = bil + tip
print(total)  # 46
