include
include
include
using namespace std;
int main(){
    string str;
    while(getline(cin,str)){//循环输入一行
        for(int i=0;i<str.size();++i){
            if(str[i]=='z')
                str[i]='a';
            if(str[i]=='Z')
                str[i]='A';
            if(str[i]>='a'&&str[i]<='y')
                str[i]++;
            if(str[i]>='A'&&str[i]<='Y')
                str[i]++;
        }
        cout<<str<<endl;
    }
    return 0;
}

京公网安备 11010502036488号