using System;
public class Program
{
public static void Main()
string input = "NGGOEUIUVNVUENEPRAYX";
int index = 0, offest = 0;
while (offest < 4)
Console.Write(input[index + offest]);
index += 4;
if (index >= input.Length)
index = 0;
offest++;
}
;