plafond python
import math
n = 2.5
print(math.ceil(n))
Muddy Markhor
import math
n = 2.5
print(math.ceil(n))
import math
x = 3.86356
math.floor(x)
#Returns: 3
math.ceil(x)
#Returns: 4
import math
print(math.ceil(5.3))
output = 6
def ceildiv(a, b):
return -(-a // b)