So when you are decrypting an encryption with modular arithmetic, I know the modulus operator (%) gives the remainder of a/b, but what if a is less than b?
For example, 5%2 is 1, since the answer is 2 remainder 1. But for something like 2%9, how do you find the answer?