# Python program to the sum of two integers with minimum variables
print("Enter two integer values::\n")
p, q = int(input()), int(input())
print("\nResult:: ", p, " + ", q, " = ", end="")
p = p + q
print(p)