Using the extended euclidian algorithm and the Chinese remainder theorem, I am able to find a solution to the following equation system:
\begin{align*} x \equiv 4 \bmod 39\\ x \equiv 5 \bmod 70 \end{align*}
The issue I have is that while I am able to find the solution (which is $355$), many steps of the Chinese remainder theorem require multiplying large numbers together (eg: $4\cdot 31\cdot34$) and finding the result of modulo operations on other large numbers (eg: $11275 \bmod 355$).
What seems impractical about this is that this is destined to be part of a handwritten test where calculators aren't authorized. In the previous question of the test, it was asked to compute the modular inverse of $39 \bmod 70$, which is $9$ and from what the test specifies this should help solve the system, unfortunately I don't see how to do this.
Is there a simpler way?