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