#1.- MATH.CEIL(X) return the ceiling of x the smallest integer greater than/equal to x.... import math x=12.4 print(math.ceil(x)) #output-13...it always return ...