fork(3) download
  1. import math
  2. print(math.ceil(2.9))
  3. print(math.floor(2.9))
  4. print(math.sqrt(16))
Success #stdin #stdout 0.02s 8736KB
stdin
Standard input is empty
stdout
3
2
4.0