A = list(map(int, input().split())) stair = 1 while(True): if(A[0] < A[1]): print(stair) break A[0] -= A[1] stair += 1