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