X = raw_input().split() F = int(X[1]) S = int(X[0]) i = 1 while S >= F: i += 1 S -= F print i