#include #include #include #include using namespace std; typedef long long int ll; int main(){ pair a,b,c; a=make_pair(2,8); b=make_pair(3,9); c=make_pair(7,9); int n; cin >> n; for(int i=0;i> x1 >> y1 >> x2 >> y2; pair p,q; p=make_pair(x1,y1); q=make_pair(x2,y2); if(p==a){ a=q; } else if(p==b){ b=q; } else if(p==c){ c=q; } } pair x,y,z; x=make_pair(5,8); y=make_pair(4,8); z=make_pair(6,8); if(a==x&&b==y&&c==z){ cout << "YES" << endl; } else{ cout << "NO" << endl; } }