fork download
  1. z = 25
  2. x = int(input("Please enter an integer to add to 25: "))
  3. print ('You entered ',x)
  4. print (x,'+ 25 =',x+z)
  5.  
Success #stdin #stdout 0.02s 5864KB
stdin
10
stdout
Please enter an integer to add to 25: You entered  10
10 + 25 = 35