#include <iostream>
#include <string>

int main()
{
    const std::string vowels = "aAeEiIoOuU";
    const std::string o = "ob";

    std::string s;
    while (std::cin >> s)
    {
        auto i = s.find_first_of(vowels);
        while (i != std::string::npos)
        {
            s.insert(++i, o);
            i = s.find_first_of(vowels, i + o.size());
        }
        std::cout << s << std::endl;
    }
    
    return 0;
}