#include using namespace std; #define int long long #define rep(i, l, r) for (int i = (int)(l); i < (int)(r); i++) #define all(x) (x).begin(), (x).end() #define sz(x) ((int)x.size()) template bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } template using V = vector; using P = pair; /* * */ signed main() { string s; cin >> s; int n = sz(s); rep(i, 0, n-1){ if(s[i] == 'a' and s[i+1] == 'o'){ s[i] = 'k'; s[i+1] = 'i'; } } cout << s << endl; return 0; }