Result Size: 625 x 571
โ€‹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