My issue
run time error
My code
#include <stdio.h>
int main() {
int T;
scanf("%d",T);
while(T--){
int X,Y;
scanf("%d%d",&X,&Y);
if(X<Y){
printf("YES\n");
} else {
printf("NO\n");
}
}
}
Learning course: Algorithmic Problem Solving
Problem Link: https://www.codechef.com/learn/course/klu-problem-solving/KLUPS00/problems/JERRYCHASE