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: "))
  4. print ('Your second number is ',x)
  5. print ('You entered ',z, 'and',x)
  6. print (z,'+',x,'=',x+z)
  7.  
Runtime error #stdin #stdout 0.02s 5852KB
stdin
Standard input is empty
stdout
Standard output is empty