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

if S >= F:
    cnt = S // F
    print(cnt+1)
else:
    print(1)