fork download
  1. z = int(input("Please enter your first integer\n "))
  2. print ('Your first number is ',z)
  3. x = int(input("Please enter another integer to add to the first one:\n "))
  4. print ('Your second number is ',x)
  5. print ('You entered ',z, 'and',x)
  6. print (z,'+',x,'=',x+z)
  7.  
Success #stdin #stdout 0.02s 5864KB
stdin
3434
56
stdout
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