sf=list(map(int,input().split())) s=sf[0] f=sf[1] answer = int(s/f)+1 if s%f==0: print(answer+1) else: print(answer)