num1=int(input("enter the first number"))
num2=int(input("enter the second number"))
print(num1+num2)
print("the sum of the two number is ", num1+num2)