def getlist():
	return list(map(int, input().split()))
S, F = getlist()
print(int(S // F) + 1)