I know this wasn't asked, but here is how one can tell if it is possible to easily find the last digits.
The way you can tell if you can easily find the last two digits of any number is if, when you raise it to the powers, the last digit cycles through 1.
For example, 3 works because the the last digit cycles 3,9,7,1 (you can check it easily). 3^4=81, which means 3^4
1mod10. And we know that we can now raise it to any power and still be x
1mod10 (where x is any power of 3^4).
It can be quickly realized that when we raise both sides to a power, 3^4 because 3^(4*power). For example, if we raised both sides by 2, it becomes 3^(4*2)
1^2mod10.
This tells us 3 to the power of any multple of 4
aka, 3^(4*2), 3^(4*3), 3^(4*4) ...
will always have a 1 as the last digit. In fact, they will by the only powers that will have 1 as the last digit
But we want the last two digits. It isn't too hard to find them now that we know which powers of 3 to check. So now we can simply use some trail and error until we find one with 01 as the last digits. We will find that 3^(4*5) will give a number with 01 as the last digit (note: I did that in a roundabout way in my first post)
So now it is simple to find the last two digits.
We can not, however, find the last two digits using ths method for, for example, 4. Because whatever power of 4 you have, it will always be even, and therefore not 1. So you will never have 4^x
1mod10, so consequently, we can not find the last digit using this method
(it is easy to find the last digit once you notice that 4 to a power always has a last digit that cycles between 4 and 6. But it is not as easy for, say, the last two digits of any power of 4)
For the same reason you can't find it for 6
You can with 7 because 7^4 has 1 as the last digit (the last two digits are actually 01 in fact)
You can also do this with 13 because 13^4 has a last digit of 1.
Hopefully this makes things a bit clearer, but perhaps not...
Anyway, if for some reason people feel like doing a problem, solve this one.
Find the last two digits of 1324939 (hint: you wouldn't be able to figure this out on your portable calculator. Use one on a computer, window's built in one will do fine)