fork download
  1. from math import *
  2. a = 68000000
  3. n = a*a
  4. x = sqrt(n+1)
  5. print a,x,x == a,floor(x) == x# your code goes here
Success #stdin #stdout 0.01s 7692KB
stdin
Standard input is empty
stdout
68000000 68000000.0 True True