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