#SDNU1492. Problem_A

Problem_A

Description

SDNU ACM-ICPC Association is in a mess. If you join it, you should be in the shadow of a person. This person, we call him "dalao".

For example, there are two rookies, CC and DD, rely on AA. We can say that AA is the closest dalao of rookies CC and DD.

For another example, AA have two heelers CC and DD, DD have two heelers EE and FF.We can know that AA is the closest dalao of EE and CC.

But with the growth of Association, we cannot find the closest dalao between two rookies. So we need your help.

Format

Input

There will be a series of examples.

For each input, the first line contains two integers NN. NN means the number of people.

Followed by the N1N-1 lines, each line contains two integers AA and BB. It means that AA is a dalao of BB.

Then the next line, contains two integers AA and BB. It means that we want to know who is the closest dalao between AA and BB.

Output

For each input, you should output the name of the closest dalao.If you cannot find this dalao, you should output "I am so bad."

Samples

7
1 2
1 3
2 5
2 6
6 7
6 8
3 5
1

Hints

Remember that a rookie is also a dalao of itself
For example:
Input

3  
1 2  
2 3  
2 3

Output

2