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