I'm trying to solve the problem that given any $x \in \mathbb{Z}/3705\mathbb{Z}$, I want to find all $x$ such that when mapped under the Chinese Remainder Theorem, is mapped to $(\bar{4},\bar{7})$ in $\mathbb{Z}/57\mathbb{Z} \times \mathbb{Z}/65\mathbb{Z}$.
Now I tried solving the system of congruences, $$x \equiv 4 \ (\text{mod} \ 57)$$ $$x \equiv 7 \ (\text{mod} \ 65)$$
Then I was left with, $$57k \equiv 3 \ (\text{mod} \ 65)$$ where $x=4+57k$. Now I could solve this by repeatedly adding (or subtracting) $65$ onto $3$, until I get a multiple of $57$. However when I typed it into Wolfram, the first solution that comes up is when I add or subtract $78$ and $38$ times respectively, which isn't exactly efficient in a test scenario. So I was wondering if there is some faster method to solve this question/system of congruences. Or some systematic way to find the number of times I need to add or subtract $65$.