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