a, b = map(int, input().split(" ")) x, y = divmod(a, b) print(x + 1)