// editor1
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main(){
    string str;
    string empty[20];
    string vowels="aeiouAEIOU";
    cin>>str;
    int len=str.length();
    for (int i=len;i<=len;i++){
        if (vowels.find(str[len])==true){
         str.remove(i);   
        }
        else{
            empty+=empty;
        }
    }
    cout<<empty;
}