fork download
  1. import math
  2. print(math.ceil(2.2))
  3. print(math.floor(2.7))
  4. print(math.pow(2,10))
  5. print(2^10)
  6. print(math.pi)
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
3
2
1024.0
8
3.141592653589793