"""Exercise 20.7.3 — Summing two typed numbers

Chapter 20: Common Pitfalls — Everyday Programming

This program should add two typed prices and print the total.

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

first = int(input("First price: "))
second = input("Second price: ")
print(first + second)
