xxxxxxxxxx
# Python program to demonstrate the use of ceil() method
# This will import math module
import math
# prints the ceil using ceil() method
print "math.ceil(-23.11) : ", math.ceil(15/2)
print "math.ceil(300.16) : ", math.ceil(300.16)
print "math.ceil(300.72) : ", math.ceil(300.72)