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(); boolean flag=true,flag2=true; int tempx=0,tempy=0; tempx=in.nextInt(); tempy=in.nextInt(); for(int a0 = 1; a0 < n; a0++){ int x = in.nextInt(); int y = in.nextInt(); if(x!=tempx){ flag=false; } if(y!=tempy){ flag2=false; } if(!flag&&!flag2){ break; } } if(flag||flag2){ System.out.println("YES"); }else{ System.out.println("NO"); } } }