# Homework 15, problem 2 -- solution. a = int(input("First number: ")) b = int(input("Second number: ")) c = a + b print(f"{a} + {b} = {c}")