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