#include<iostream>
using namespace std;
#include<string>
int main()
{
    string a="hello world";                    //字符串
    for(int i=0;i<11;i++)
    {
        cout<<char(a[i]+1);
    }
}