Get your own Python server Result Size: 625 x 565
x
 
#Import math library
import math
#Round a number upward to its nearest integer
print(math.ceil(1.4))
print(math.ceil(5.3))
print(math.ceil(-5.3))
print(math.ceil(22.6))
print(math.ceil(10.0))
2
6
-5
23
10