13577 - Anya loves to encrypt   

Description

Anya wants to be a spy in the future, and Anya tries to encrypt the string by changing lowercase to uppercase and reversing each alphabet. 

That is,
  'a' first becomes 'A' and then becomes 'Z'.

  'b' first becomes 'B' and then becomes 'Y'.

  'c' first becomes 'C' and then becomes 'X'.
  ...

  'y' first becomes 'Y' and then becomes 'B'.

  'z' first becomes 'Z' and then becomes 'A'.

Input

Input contains only a line.
A 5 character word.
It is guarantee that the word contains only lower case alphabet.

 

Output

The encrypted word.

remember to print \n at the end of output.

 

Sample Input  Download

Sample Output  Download

Tags




Discuss