Help me in solving CSJ202A problem

My issue

what is the error in this code ?

My code

import java.util.Scanner;

class Codechef
{
	public static void main (String[] args)
	{
		Scanner read = new Scanner(System.in);
		
		int t = read.nextInt();
		for(int i=0; i<t; i++)
		{
    		int x = read.nextInt();
    		int y = read.nextInt();
    		int a = read.nextInt();
    		
    		
    		// Update your code below this line solve the problem
    		if( a>=x && a<y)
    		{
    		    System.out.println("YES");
    		}
    		else{
    		    System.out.println("N0");
    		}
		}
	}
}

Learning course: Java for problem solving - 1
Problem Link: CodeChef: Practical coding for everyone