import java.util.*;
import java.io.*;


public class Main
{
    public static void main(String args[]) throws IOException
    {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] str = br.readLine().split(" ");
        int M = Integer.parseInt(str[0]);
        int N = Integer.parseInt(str[1]);
        int K = Integer.parseInt(str[2]);

        String target = br.readLine();
        String total = br.readLine();
        if(total.contains(target))
            System.out.println("secret");
        else
            System.out.println("normal");
    }
}

+ Recent posts