#include <iostream>
using namespace std;
int main()
{
string s;
getline(cin,s);
for(auto c : s)
{
if(c>='a' && c<'z' || c>='A' && c<'Z') cout<<char(c+1);
else if(c=='z') cout<<'a';
else if(c=='Z') cout<<"A";
else cout<<c;
}
}