#include #include #include using namespace std; int main() { char tmp[100]; string str; scanf("%s", tmp); str = tmp; regex re("ao"); cout << regex_replace(str, re, "ki") << "\n"; return 0; }