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