a,b=(int(i) for i in input().split()) c=a%b if c==0: print (a//b) else: print (a//b+1)