#include<iostream> using namespace std; int main() { char a; int b; cin>>a; b=char(a+2); if(b>90) cout<<char(a-24); else cout<<char(b); return 0; }