s, f = map(int,(input().split())) cnt = 1 if s % f == 0: print(2) elif s // f < 0: print(1) else: print((s // f) + 1)