Help me in solving AUDIBLE problem

My issue

can someone please tell what is wrong in my program

My code

#include <stdio.h>

int main(void) {

int t;
scanf("%d",&t);
for(int i=0;i<t;i++){
    int x;
    scanf("%d",&x);
    
    if(x>=65&&x<=45000){
        printf("YES \n");
                         }
    else {
        printf("NO \n");
         }
}
return 0;

}


Learning course: 500 difficulty rating
Problem Link: Audible Range Practice Problem in - CodeChef

@rananihal0601
its not 65 its 67 lower limit

1 Like