#include<iostream>
#include<string>
#include<cctype>
using namespace std;
bool isVowel(char c){
    c=tolower(c);
    return(c=='a'||c=='e'||c=='i'||c=='o'||c=='u');
}
bool isValidInput(const string& str){
    for(char c:str){
        if(!isalpha(c) && c != ''){
            return false;
        }
    }
    return true;
}
int main(){
    string str;
    getline(cin,str);
    if(!isValidInput(str)){
        cout<<"Invalid Input"<<endl;
    }else{
        string result="";
        for(char c:str){
            if(!isVowel(c)){
                result+=c;
            }
        }
        cout<<result<<endl;
    }
    return 0;
}