Suppose that you are asked to find the last $2$ digits of $5312^{442}$.
We need to find what number between $0$ and $99$ that is congruent to our number modulo $100$.
My first guess would be to check to see if I can use Euler's Theorem, but since $5312$ and $100$ are not coprime it would not be useful.
Would it be possible to convert the exponent to binary and use the successive squaring algorithm to solve: $5312^{442} \mod 100$? Are there any other (better) ways to go about this?