# include<iostream> using namespace std; int main(){ char c; cin>>c; c=(c-65+2)%26+65; cout<<c<<endl; return 0; }