12366 - svool dliow   

Description

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

Input contains only a line.

A 5 character word.

It's is guarantee that the word contains only lower case alphabet.

Output

Output contains only a line.

The encrypted word.

With a new line after.

Sample Input  Download

Sample Output  Download

Tags




Discuss