When defining the "Big-Oh" notation, we say that $f(n) \text{ is } O(g(n))$ if there is a real constant $c > 0$ and an integer constant $n_0 \geq 1$ such that
$$f(n) \leq c \cdot g(n), \text{ for } n \geq n_0$$
For this definition, what is the meaning of $n_0$?
