fork download
  1. from __future__ import division
  2.  
  3. x = 2**53+3
  4. print int(x/2)
  5. print x//2
Success #stdin #stdout 0.02s 9016KB
stdin
Standard input is empty
stdout
4503599627370498
4503599627370497