"""Exercise 20.4.2 — Using a sum before it exists

Chapter 20: Common Pitfalls — Everyday Programming

This program should add the first two test marks together.

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

first = 70
second = 85
print(total)
total = first + second
