접근 방법
- count를 이용하여 비밀 메뉴 조작이 있는지 확인
import sys
input = sys.stdin.readline
m, n, k = map(int, input().split())
secret_order = input().strip().replace(" ", "")
user_order = input().strip().replace(" ", "")
answer = user_order.count(secret_order)
if answer:
print("secret")
else:
print("normal")