Run ID:149010

提交时间:2026-03-06 18:14:04

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