S, F = map(int, input().split())

if S % F == 0:
    print(S // F)
elif(S % F != 0):
    print((S // F) + 1)