I'm having quite a bit of confusion over how I should read the congruent sign in a modulus equation. For example, I have seen this example as valid:
$$ 81 \equiv 13 \pmod{17} $$
From what I see, it reads to me as "when $81$ is divided by $17$, the remainder is $13$".
However, in another example, this appears to be valid too:
$$ 9 \equiv 2^6 \pmod{11} $$
Now, if I use the same format as how I read the first example, "when $9$ is divided by $11$, the remainder is $2^6 = 64$", this sounds wrong. The remainder of $9$ divided by $11$ is $9$, not $64$. Instead, it sounds more correct when I read it the opposite way: "when $2^6 = 64$ is divided by $11$, the remainder is $9$".
This is somewhat confusing to me because how should I read the equation? Sometimes it seems like the first term $a$ is the remainder while other times it looks like the second term $b$ is the remainder.