#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char text[101], i;
cout<<"Text:"; cin.get(text,101);
for(i=0;i<strlen(text);i++)
if(text[i]=='a' && (i+1)%2==0)
text[i]='e';
else if(text[i]=='a' && (i+1)%2==1)
text[i]='o';
cout<<text;
return 0;
}