S, F = [int(x) for x in input().split()] if S % F == 0: print(S//F + 1) else: print(S//F)