시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB17141381.250%

문제

Nina and Emilija are playing a game on a piece of paper. Initially, the paper is empty. In one move a player appends a letter to the end of the word that is currently written on the paper. They alternate turns, and Nina plays first.

Players must choose the letters in such a way that the following condition is met: the word that is written after the player’s move must be a prefix of some word in that players favourite song. If the player can’t make a move, she loses.

If both players play optimally, determine who wins.

입력

The first line contains a positive integer n, the number of words in Nina’s favourite song. Each of the following n lines contains a word from Nina’s favourite song.

The following line contains a positive integer m, the number of words in Emilija’s favourite song. Each of the following m lines contains a word from Emilija’s favourite song.

Words in input contain only lowercase letters, and the sum of the lengths of all words is at most 200 000.

출력

Output Nina or Emilija, the name of the winner.

예제 입력 1

2
aaa
bbb
3
aab
aba
bbb

예제 출력 1

Nina

예제 입력 2

2
acg
beh
2
adi
bfj

예제 출력 2

Emilija

예제 입력 3

3
ja
sam
vlak
5
sto
zgazit
ce
te
mali

예제 출력 3

Nina

힌트

Clarification of the first example:

If Nina first writes b, Emilija must write b, and then Nina can write b. The current word is bbb, and Emilija can’t make a move, so Nina wins.

If Nina would first write a, Emilija could write b. The word would be ab, and Nina wouldn’t be able to make a move, and she would lose.