import math
S, F = list(map(int, input().split(" ")))
print(math.floor(S/F) + 1)