a = 10 b = 100 import math if b / a >= 0: print(math.ceil(b / a)) else: print(math.floor(b / a))