S, F = map(int, input().split()) if S == 0: print(1) else: print(S // F + 1)