ceil ( expression )
Returns the lowest integer that is greater than or equal to expression.
Floor
print ceil(9.1) print ceil(-5.4)
will print
10 -5