#include <bits/stdc++.h>
using namespace std;
int n,i,j;
char s[256],r[256],c[10],*p;
bool ok;
int main()
{
cin.getline(s,256);
n=strlen(s);
ok=true;
p=strtok(s," ");
while(p)
{
strcpy(c,p);
i++;
ok=true;
for(j=0;j<strlen(c);j++)
if(!strchr("aeiou",c[j])) ok=false;
if(ok) cout<<c<<"\n";
p=strtok(NULL," ");
}
return 0;
}