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