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