calc = int(input("Enter a number: ")) calc2 = int(input("Enter a number: ")) result = calc + calc2 print(f"{calc} + {calc2} = {result}")