| CodeRams Practice Problem Archive |
|---|
| Finished |
A monoalphabetic cipher is a type of encryption where each letter in the alphabet correlates to another letter in the alphabet. For this question you need to decrypt a piece of text given the key used to encrypt it and the encrypted message.
The first line will be the key needed to decrypted the text and the second line will be the encrypted message. For the key that is given, the first letter of the key correlates to A, the second letter in the the key goes to B, then C and so on.
Print the following: "Decrypted text: (Decrypted text)"
azertyuiopqsdfghjklmwxcvbn miol ligwsr zt ktarazst mtvm
Decrypted text: this should be readable text
| Name |
|---|


