import math step, floor = map(int, input().split()) if (step % floor) == 0: ans = math.ceil(step / floor) + 1 else: ans = math.ceil(step / floor) print(int(ans))