import math
s, f = (int(i) for i in input().split())

print(math.floor(s / f) + 1)