#include <iostream>
#include <cstring>
using namespace std;
char s[256], t[256], voc[]="AEIOUaeiou";
int n, i;
int main()
{
cout << "introdu textul: "; cin.getline(s,256);
i=0; t[0]='\0';
while (i<strlen(s))
{
if (strchr(voc,s[i]))
{
strcpy(t, s+i+1);
strcpy(s+i, t);
}
else ++i;
}
cout << s;
}