import math A, B = input.split() C = int(math.floor(A / B + 1)) print(C)