Help me in solving GDTURN problem

My issue

if((x+y)>6){
System.out.println(“YES”);
}
still it is giving yes for value =6 please resolve it

My code

/* package codechef; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner scc=new Scanner(System.in);
		int n=scc.nextInt();
		int x=0,y=0;
		for(int i=0;i<n;i++){
		     x+=scc.nextInt();
		     y+=scc.nextInt();
		     if((x+y)>6){
		    System.out.println("YES");
		}
		else{
		    System.out.println("NO");
		}
		}
		
	
	}
}

Problem Link: GDTURN Problem - CodeChef

@reddyrani28
U don’t need to sum up all the x or y previous values just check the current value.