"""Exercise 10.3.1 — Return, do not print

Chapter 10: Functions — Everyday Programming

This program should store the sum of two numbers and then print 12.

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

def add(a, b):
    print(a + b)

total = add(5, 7)
print(total)  # 12
