#abc179b. [abc179_b]Go to Jail

[abc179_b]Go to Jail

Problem Statement

Tak performed the following action NN times: rolling two dice. The result of the ii-th roll is Di,1D_{i,1} and Di,2D_{i,2}.

Check if doublets occurred at least three times in a row. Specifically, check if there exists at lease one ii such that Di,1=Di,2D_{i,1}=D_{i,2}, Di+1,1=Di+1,2D_{i+1,1}=D_{i+1,2} and Di+2,1=Di+2,2D_{i+2,1}=D_{i+2,2} hold.

Constraints

  • 3leqNleq1003 \\leq N \\leq 100
  • 1leqDi,jleq61\\leq D_{i,j} \\leq 6
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN D1,1D_{1,1} D1,2D_{1,2} vdots\\vdots DN,1D_{N,1} DN,2D_{N,2}

Output

Print Yes if doublets occurred at least three times in a row. Print No otherwise.


Sample Input 1

5
1 2
6 6
4 4
3 3
3 2

Sample Output 1

Yes

From the second roll to the fourth roll, three doublets occurred in a row.


Sample Input 2

5
1 1
2 2
3 4
5 5
6 6

Sample Output 2

No

Sample Input 3

6
1 1
2 2
3 3
4 4
5 5
6 6

Sample Output 3

Yes