My issue
the code running is properly but the submission answer
is wrong can any one say the solution
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++)
// #Update your code below this line to solve this problem
{
int n = read.nextInt();
int m = read.nextInt();
int k = read.nextInt();
if(n<=m ||k>m){
System.out.println("Yes");
}
else {
System.out.println("No");
}
}
}
}
Learning course: Solve Programming problems using Java
Problem Link: CodeChef: Practical coding for everyone