Language : C(NOTE : Try a few times yourself before moving to the solution)
#include <stdio.h>
int main(void) {
int t;
scanf("%d\n",&t);
while(t--)
{
int a,b,c;
scanf("%d %d %d\n",&a,&b,&c);
if(b>=a && b>=c)
printf("Yes\n");
else
printf("No\n");
}
return 0;
}
No comments:
Post a Comment