"""Exercise 10.7.4 — None in arithmetic

Chapter 10: Functions — Everyday Programming

This program should add 5 to the result of a function that returns a
number.

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

def base_value():
    total = 10

print(base_value() + 5)  # 15
