An exercise asks me to encrypt with RSA a message m=10. The public key e=11 and the private key d=11. The modulo is 60.
So i tried first to cipher this way: C=10^11 mod 60=40
So 40 is my ciphertext.
Then the exercise asks me to decrypt it.
So I did M=40^11 mod 60
But the result is 40 again when it should be 10.
How is it possible? Where am I wrong?