#include<iostream> using namespace std; int main(){ string c="China"; for(int i=0;i<5;i++) c[i]+=4; cout<<c; return 0; }