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