fork download
  1. x = 10**20
  2. y = x - 1
  3. z = x - y
  4.  
  5. print(z)
  6. print(z == 1)
  7. print(z is 1)
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
1
True
False