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.  
Runtime error #stdin #stdout 0.02s 5864KB
stdin
5,6
stdout
Please enter your first integer