Fax McClad, Croneria's most adventurous bounty hunter, has been tasked to explore the unknown planet TR-387. Upon arrival to this planet, he finds a primitive civilization of alien beings. He is surprised to learn that they only use lowercase English letters to represent digits in their number system!
The beings of this planet are particularly fond of a technique called rounding. Here are the rules on how to round a number:
- Start with the last (rightmost) digit of the number.
- If the digit is in between
a
andm
, set the digit toa
. - If the digit is in between
n
andz
, set the digit toa
and increase the next (left) digit by one character. If the next digit happens to bez
, round that character instead of increasing it. If there is no next digit, adda
to the left of the number.
Fax wishes to be acquainted with this alien species by showing them that he knows their rounding technique, but he is having difficulty doing so. Given a number , can you round it for him?
Input Specification
The first and only line of input will contain , a string consisting only of lowercase English letters. will contain at least character and at most characters.
Output Specification
Output one line, the rounded value of .
Sample Input 1
abcdefghijklmnopqrstuvwxyz
Sample Output 1
abcdefghijklmnopqrstuvwxza
Sample Input 2
y
Sample Output 2
aa
Sample Input 3
faxmcladisthegreatestbountyhunterincroneria
Sample Output 3
faxmcladisthegreatestbountyhunterincroneria
Comments
ayy lmao