import java.util.*; public class Main { static HashSet set; static final char[] moji = {'i', 'n', 'a', 'b', 'a', 'm', 'e', 'g', 'u', 'r', 'u'};//11moji static void func(char[] now, int used, int current, boolean prevNotVowel) { if (current == 11) { if (!set.contains(new String(now))) { System.out.println(now); System.exit(0); } else { return; } } // 子音を使いきった場合(ありえない) if ((used & 0b10101010101) == 0b10101010101) { return; } int step = 1; // 子音の後は、母音しか選べないのでうまいこと2つとばしになっている。 if (prevNotVowel) { step = 2; } for (int i = 0; i < 11; i += step) { final int bit = 1 << i; if ((used & bit) > 0) { continue; } // 選んだものが子音じゃないか判定 boolean isNotVowel = (bit & 0b01010101010) > 0; now[current] = moji[i]; func(now, used | bit, current + 1, isNotVowel); } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); set = new HashSet<>(N); for (int i = 0; i < N; i++) set.add(sc.next()); func(new char[11], 0, 0, false); System.out.println("NO"); } }