z = int(input("Please enter your first integer\n "))print ('Your first number is ',z)x = int(input("Please enter another integer to add to the first one:\n "))print ('Your second number is ',x)print ('You entered ',z, 'and',x) print (z,'+',x,'=',x+z)
3434 56
Please enter your first integer Your first number is 3434 Please enter another integer to add to the first one: Your second number is 56 You entered 3434 and 56 3434 + 56 = 3490
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!