#abc285d. [abc285_d]Change Usernames

[abc285_d]Change Usernames

Problem Statement

You run a web service with NN users.

The ii-th user with a current handle SiS_i wants to change it to TiT_i.
Here, S1,ldotsS_1,\\ldots, and SNS_N are pairwise distinct, and so are T1,ldotsT_1,\\ldots, and TNT_N.

Determine if there is an appropriate order to change their handles to fulfill all of their requests subject to the following conditions:

  • you change only one user's handle at a time;
  • you change each user's handle only once;
  • when changing the handle, the new handle should not be used by other users at that point.

Constraints

  • 1leqNleq1051 \\leq N \\leq 10^5
  • SiS_i and TiT_i are strings of length between 11 and 88 (inclusive) consisting of lowercase English letters.
  • SineqTiS_i \\neq T_i
  • SiS_i are pairwise distinct.
  • TiT_i are pairwise distinct.

Input

The input is given from Standard Input in the following format:

NN S1S_1 T1T_1 S2S_2 T2T_2 vdots\\vdots SNS_N TNT_N

Output

Print Yes if they can change their handles to fulfill all of their requests subject to the conditions; print No otherwise.


Sample Input 1

2
b m
m d

Sample Output 1

Yes

The 11-st user with a current handle b wants to change it to m.
The 22-nd user with a current handle m wants to change it to d.

First, you change the 22-nd user's handle from m to d; then you change the 11-st user's handle from b to m. This way, you can achieve the objective.

Note that you cannot change the 11-st user's handle to m at first, because it is used by the 22-nd user at that point.


Sample Input 2

3
a b
b c
c a

Sample Output 2

No

The 11-st user with a current handle a wants to change it to b.
The 22-nd user with a current handle b wants to change it to c.
The 33-rd user with a current handle c wants to change it to a.

We cannot change their handles subject to the conditions.


Sample Input 3

5
aaa bbb
yyy zzz
ccc ddd
xxx yyy
bbb ccc

Sample Output 3

Yes