Run ID:117274

提交时间:2025-04-16 18:59:39

#include <iostream> using namespace std; int main() { string s; cin >> s; for (char &c : s) { c = (c == 'z') ? 'a' : c + 1; } cout << s << endl; return 0; }