import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int v=Integer.MAX_VALUE; int h=Integer.MAX_VALUE; boolean xMatch=true; boolean yMatch=true; for(int a0 = 0; a0 < n; a0++){ int x= in.nextInt(); int y= in.nextInt(); if(v!=Integer.MAX_VALUE){ xMatch=(h==x)&& xMatch?true:false; yMatch=(v==y)&& yMatch?true:false; }else{ h=x; v=y; } } if(xMatch||yMatch){ System.out.println("YES"); }else{ System.out.println("NO"); } } }