I have an RSA example to solve. I got my decryption key and now I need to calculate the modulo $d^e \pmod n$. Here is the example
$$ 1007^{10} \mod 3599. $$
What I am trying is $$ 1007^3 \times 3 = 3063442029 + 1007^1 = 3063443036. $$
Then I am trying to get the mod by $3063443036/3599$ but that does not give me the answer I get $851192.8413$ while the modulo should be $441$.
I don't think I am doing the calculations correctly in this part $$ 1007^3 \times 3 = 3063442029 + 1007^1 = 3063443036. $$