#include <iostream>
using namespace std;
void main()
{
    char c;
    string str;
    while(c = getchar())
    {
        if(c == '\n')
        {
            break;
        }   
        if(c=='A'||c=='E'||c=='I'||c=='O'||c=='U'||c=='a'||c=='e'||c=='i'||c=='o'||c=='u')
        {           
        }
        else
            str+=c;
    }
    cout<<str.c_str()<<endl;
    system("pause");
}