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