#include <iostream> using namespace std; int main(){ char a1,a2; int n=2; cin>>a1; a2=(a1-65+n)%26+65; cout<<a2<<endl; }