#include using namespace std; int main(){ string S; cin >> S; for(int i=0; i<6; i++) if(S.substr(i, 2) == "ao"){ S[i] = 'k'; S[i+1] = 'i'; } cout << S << endl; return 0; }