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