#include<iostream>
#include<string>
#include<cctype>

int main(){
    std::string str,result="";
    std::getline(std::cin,str);
    
    foe(char c:str){
        if(!std::isalpha(c)&&!std::isspace(c)){
            std::cout<<"Invaild input"<<std::endl;
            return 0;
        }
        char lower = std::tolower(c);
        if(!(lowerC == 'a' || lowerC == 'e' || lowerC == 'i' || lowerC == 'o' || lowerC == 'u')){
            result +=c;
        }
    }
    std::cout << result << std::endl;
    return 0;
}