s, f = [int(i) for i in input().split()] count = 1 if ( s / f == 0): print("%d" % count) else: print("%d" % (s/f+1))