My working so far:
$71-1=70$ and Prime factors of $70$ are $2 \times 5 \times 7$
Check $a=7$:
$7^{(\frac{70}{2})} \equiv 7^{35} \equiv x (mod 71)$
How do I find $x$? Usually I would use Fermat's little theorem and firstly find $\phi(71)$ except 71 is prime (giving the value as $71-1=70$ but this is a fact that we're trying to prove in the first place!!
I could of course use my calculator to calculate it, but this assumes the numbers aren't too extremely horrible.
How else do you calculate this nicely?
You can use repeated squaring to get to large powers quickly, then use binary to write the exponent as a sum of exponents you've already reached: $$7^1 = 7 \equiv 7\pmod{71}$$ $$7^2 = 49 \equiv 49\pmod{71}$$ $$7^4 = 49^2 \equiv 58\pmod{71}$$ $$7^8 = 58^2 \equiv 27\pmod{71}$$ $$7^{16} = 27^2 \equiv 19\pmod{71}$$ $$7^{32} = 19^2 \equiv 6\pmod{71}$$ $$7^{35}=7^{32}7^27^1\equiv 6\cdot 49\cdot 7\equiv 70\pmod{71}$$ It's still a lot of work, but it's much less than multiplying $7$ by itself $35$ times, even if you reduce mod $71$ each time.