string txt; //sau char[]
string out;bool found=false;
char vox[]={'a','e','i','o','u'},temp;
cin>>txt;
for(int i=0;i<txt.length();i++){
temp=txt[i];
out=out+temp;
for(int j=0;j<5;j++){
if(temp=vox[j]) {out=out+"*";found=true;}
}
}
cout<<(found?out:"FARA VOCALE");