fork download
  1. import math
  2. print (round(6.4))
  3. print (math.floor(6.7))
  4. print (math.floor(6.03))
Success #stdin #stdout 0.08s 14052KB
stdin
Standard input is empty
stdout
6
6
6