PROGRAM z_16_55;
var s,snew:string;
n,i:byte;
BEGIN write('vvedite stroky');
readln(s);
n:=length(s);
snew:=' ';
for i:=1 to n do if s[i] in ['a','e','i','o','u'] then snew:=snew+s[i]+s[i] else snew:=snew+s[i];
writeln(snew);
END.