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