fork download
  1. x = 3**60
  2. y = 7
  3. z = x/y
  4. print(z.is_integer())
  5. print(x%y==0)
Success #stdin #stdout 0.02s 9040KB
stdin
Standard input is empty
stdout
True
False