# Take input from the user num1 = int(input()) num2 = int(input()) # Add the numbers result = num1 + num2 # Display the result print(result)