Given a 5-character word containing only lower case letters, try to encrypt the word by reversing and capitalize each character.
That is,
'a' becomes 'Z'.
'b' becomes 'Y'.
...
'y' becomes 'B'.
'z' becomes 'A'.
Input contains a 5-character word consist of lower case letters only.
Output the encrypted word with a new-line character in the end.