#include<iostream>
#include<string>
using namespace std;

int main(){
    string str;
    getline(cin,str);
    for(char c:str){
        if(!isalpha(c) && c!=''){
            cout<<"Invalid input";
            return 0;
            
        }
    }
    string result="";
    for(char c:str){
        if(c!='a'&& c!='e'&& c!='i' && c!='0' && c!='u' && c!='A' && c!='E' && c!='I' && c!='O' && c!='U'){
            result+=c;
        }
    }
    cout<<result;
    return 0;
}