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