While the proof looks correct to me, note that using lots of symbols often doesn't make for a very readable proof. Instead, try to write in full sentences.
Another thing is that many mathematical results already have names. By referring to these names instead of spelling out the full result, you can shorten your proof, while keeping it clear.
For instance, you could start off with: By the Chinese Remainder Theorem, it is enough to show that $3,11\mid mn(m^{10}-n^{10})$ for all integers $m,n$.
Next, note that your're basically proving the same thing twice. The argument is: I have some prime $p$ (either $3$ or $11$ in your case) and either $p\mid nm$ or $m^{10}\equiv n^{10}\equiv 1\pmod p$. In both cases, it follows that $p\mid mn(n^{10}-m^{10})$.
I'd turn this into a simple lemma.
Lemma: Let $p$ be a prime, $k$ a positive integer with $p-1\mid k$. Then $p\mid mn(m^k-n^k)$ for all $m,n\in\mathbb{Z}$.
Proof: Let $m,n\in\mathbb{Z}$ be given. If $p\mid mn$, we are done. Otherwise, $m$ and $n$ can be regarded as elements of $(\mathbb{Z}/p\mathbb{Z})^\times$, which is a cyclic group of order $p-1$. This means that $m^{p-1}\equiv n^{p-1}\equiv 1\pmod p$. Write $k=(p-1)l$, then
$$m^{k}-n^{k}\equiv (m^{p-1})^l-(n^{p-1})^l\equiv 1^l-1^l\equiv 0\pmod p,$$
so $p\mid m^{k}-n^{k}$. In both cases, $p\mid mn(m^k-n^k)$. Q.E.D.
Now, if you ever get ten exercises like these on a test, you can write down the lemma once and solve all the exercises very quickly by simply referring to the lemma and Chinese Remainder Theorem.
In general, it can be very helpful to look at an exercise like this and the proof you've given for it and ask yourself how far you can take it. What if we take some other number instead of $33$? What if this new number is divisible by the square of some prime? Or any prime power? How will you have to change the lemma? Can you even change the lemma or are there cases in which an analogous statement doesnt hold?