#include<bits/stdc++.h>
using namespace std;

int main() {
    string str;
    getline(cin, str);//读取输入的字符串
    for (char c : str) {
        //如果字符是小写z,输出小写a
        if (c == 'z') {
            cout << 'a';
        }
        //如果字符是大写Z,输出大写A
        else if (c == 'Z') {
            cout << 'A';
        }
        //如果字符是其他字母,输出其后一个字母
        else if ((c >= 'a' && c <= 'y') || (c >= 'A' && c <= 'Y')) {
            cout << char(c + 1);
        }
        //如果是其他字符,照常输出
        else {
            cout << c;
        }
    }
}