Help me in solving CSJ202A problem

My issue

i dont undersqtnd why i get wrong qbnnswer

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(); 
    		
    		if(x<=a&&a<y)
            {
                System.out.println("YES");
            }
            else
            {
                System.out.print("NO");
            }
    		// Update your code below this line solve the problem
		}
	}
}

Learning course: Placement preparation using Java
Problem Link: CodeChef: Practical coding for everyone