#include <bits/stdc++.h>
using namespace std;
using lint     = long long;
const lint inf = 1LL << 60;
const lint mod = 1000000007;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    string s;
    cin >> s;
    for (int i = 0; i < (int)s.size() - 1; ++i) {
        if (s.substr(i, 2) == "ao") {
            s[i]     = 'k';
            s[i + 1] = 'i';
        }
    }
    cout << s << "\n";
    return 0;
}