#include using namespace std; using uint = unsigned int; using ll = long long; using ull = unsigned long long; template using V = vector; template using VV = V>; template using VVV = V>; template using VVVV = VV>; #define rep(i,n) for(ll i=0ll;i bool chmin(T& t, const U& u) { if (t > u){ t = u; return 1;} return 0; } template bool chmax(T& t, const U& u) { if (t < u){ t = u; return 1;} return 0; } // cin.tie(nullptr); // ios::sync_with_stdio(false); // cout << fixed << setprecision(20); void solve(){ V> v = {{2,8},{3,9},{7,9}}; V> w = {{5,8},{4,8},{6,8}}; ll n; cin >> n; rep(i,n){ ll a,b,c,d; cin >> a >> b >> c >> d; rep(j, 3) if(pair{a, b} == v[j]) v[j] = {c,d}; } if(v==w) cout << "YES" << endl; else cout << "NO" << endl; } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int t=1; // cin >> t; rep(i,t) solve(); }