#include <iostream>
#include <string.h>
using namespace std;
int main()
{
int n;
cin >> n;
char str[500];
cin >> str;
char temp[300] = {0};
char *t = temp;
char *c = str;
while (*c)
{
t = temp;
if (*c == 'y' && *(c + 1) == 'u')
{
char *pc = c + 2;
while (*pc == 'y' && *(pc + 1) == 'u')
{
pc += 2;
}
while (*pc)
{
*t = *pc;
t++;
pc++;
}
*c = 'w';
c++;
*c = 'u';
c++;
*c = 'j';
c++;
*c = 'i';
c++;
*c = 'u';
c++;
*c = 0;
strcat(str, temp);
memset(temp, 0, 300);
}
c++;
}
cout << str;
}