시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB24411610550.725%

문제

The CEMC is organizing a workshop with an activity involving pairs of students. They decided to assign partners ahead of time. You need to determine if they did this consistently. That is, whenever A is a partner of B, then B is also a partner of A, and no one is a partner of themselves.

입력

The input consists of three lines. The first line consists of an integer N (1 < N ≤ 30), which is the number of students in the class. The second line contains the first names of the N students separated by single spaces. (Names contain only uppercase or lowercase letters, and no two students have the same first name). The third line contains the same N names in some order, separated by single spaces.

The positions of the names in the last two lines indicate the assignment of partners: the ith name on the second line is the assigned partner of the ith name on the third line.

출력

The output will be good if the two lists of names are arranged consistently, and bad if the arrangement of partners is not consistent.

예제 입력 1

4
Ada Alan Grace John
John Grace Alan Ada

예제 출력 1

good

예제 입력 2

7
Rich Graeme Michelle Sandy Vlado Ron Jacob
Ron Vlado Sandy Michelle Rich Graeme Jacob

예제 출력 2

bad