I take a number (3) and do the following to it:
Num1= (3+7)%10
This gives us 10%10. The remainded of 10/10 is 0.
Now how can I work backward from this answer to get back to 3. I need to somehow "reverse" the modulus operation. This is for a simple Encryption/Decryption program. Any help appreciated.
