#include<iostream> using namespace std; int main() { char i; while (cin>>i)//ctrl+z结束输入 cout<<(char)(i+1)<<" "; return 0; }