In our case we have p = 13 as our modulus.
For 2^70, we have a = 2 as the base.
Using the 2nd version of FLT mentioned above, we can say:
a^(p-1) = 1 (mod p)
2^(13-1) = 1 (mod 13)
2^12 = 1 (mod 13)
This is extremely useful because 1 is a very easy number to work with in terms of exponents and multiplication.
Pay careful attention to the fact we did not calculate 2^12 to get some massive number. Same goes for 2^60 and so on.
Then,
2^60 = 2^(12*5) = (2^12)^5 = (1)^5 = 1 (mod 13)
in short
2^60 = 1 (mod 13)
Then multiply both sides by 2^4, aka 16
2^60 = 1 (mod 13)
2^4*2^60 = 2^4*1 (mod 13)
2^64 = 16 (mod 13)
2^64 = 3 (mod 13)
Repeat that step again. The goal is to have the exponent reach 70.
2^64 = 3 (mod 13)
2^4*2^64 = 2^4*3 (mod 13)
2^68 = 16*3 (mod 13)
2^68 = 3*3 (mod 13)
2^68 = 9 (mod 13)
I'm doing this in small chunks to avoid having massive results.
Then finally we need to multiply both sides by 2^2
2^68 = 9 (mod 13)
2^2*2^68 = 2^2*9 (mod 13)
2^70 = 36 (mod 13)
2^70 = 10 (mod 13)
We'll come back to this later.