Given a 5 characters word, try to encrypt the string by reversing each alphabet.
That is,
'a' becomes 'z'.
'b' becomes 'y'.
'c' becomes 'x'.
...
'y' becomes 'b'.
'z' becomes 'a'.
ouo.
Input contains only a line.
A 5 character word.
It's is guarantee that the word contains only lower case alphabet.
Output contains only a line.
The encrypted word.
With a new line after.