fork download
  1. z = int(input("Please enter your first integer "))
  2. x = int(input("Please enter another integer to add to the first one: "))
  3. print ('You entered ',x)
  4. print (x,'+',z,'=',x+z)
  5.  
Success #stdin #stdout 0.02s 5864KB
stdin
11
2
stdout
Please enter your first integer Please enter another integer to add to the first one: You entered  2
2 + 11 = 13