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