Problem
Let $f : \mathbb{N}\to\mathbb{N}$ be a strictly increasing function such that $f(2) = 2$ and $f(mn) = f(m) \cdot f(n)$ for every relatively prime pair of positive integers $m$ and $n$. Prove that $f(n) = n$ for every positive integer $n$.
My approach
I tried to prove this using induction. For the base case, we need to find $f(3)$. We have $$f(3) \cdot f(5)<2f(9)<4f(5)$$ $$\implies f(3)<4$$ And since $f(3)>f(2)=2$, we have $f(3)=3$.
Now, we assume that $f(k-1)=k-1$ and $f(k)=k$. Since $k$ and $k-1$ are relatively prime, we have $f(k(k-1))=f(k)f(k-1)=k(k-1)$. But this does not prove.
So, how do I complete the proof?