num1 = input('Enter a number: ')
num2 = input('Enter another number: ')
sum = int(num1) + int(num2)
print('Addition of the two numbers is ', sum)