import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashSet; import java.util.Set; public class Main { public static void main(String[] args) throws IOException { Set letters = new HashSet<>(); for (char ch = 'a'; ch <= 'z'; ch++) letters.add(ch); for (char ch = 'A'; ch <= 'Z'; ch++) letters.add(ch); for (char ch = '0'; ch <= '9'; ch++) letters.add(ch); BufferedReader stdin = new BufferedReader(new InputStreamReader(System.in)); String line; while ((line = stdin.readLine()) != null) { String[] tokens = line.split(" ", 2); String who = tokens[0]; StringBuilder speech = new StringBuilder(); for (char c : tokens[1].toCharArray()) { if (letters.contains(c)) { speech.append(c); } } String ans = isOK(who, speech.toString().toLowerCase()) ? "CORRECT (maybe)" : "WRONG!"; System.out.println(ans); } } public static boolean isOK(String who, String speech) { // digiの全てのセリフはnyoか,nyoの末尾に記号を1~3文字つけたもので終わる // petitの全てのセリフはnyuか,nyuの末尾に記号を1~3文字つけたもので終わる // gemaの全てのセリフはgemaか,gemaの末尾に記号を1~3文字つけたもので終わる // piyoの全てのセリフはpyoか,pyoの末尾に記号を1~3文字つけたもので終わる if (who.equals("digi")) return speech.endsWith("nyo"); if (who.equals("petit")) return speech.endsWith("nyu"); if (who.equals("gema")) return speech.endsWith("gema"); if (who.equals("piyo")) return speech.endsWith("pyo"); // rabiの全てのセリフは記号でない文字を少なくても1文字含む // 変数speechは記号文字はすべて削除されている。 return !speech.isEmpty(); } }