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