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