a, b = map(int, input()) r, m = divmod(a, b) if m == 0: print(r) else: print(r + 1)