Solution for one more problem in 8th March contest

Solution for one more problem in 8th March contest in c
#include <stdio.h>

int main(void) {
// your code goes here
int t;
scanf("%d",&t);
while(t–){
int x;
scanf ("%d",&x);
if(x>24)
printf(“yes\n”);
else
printf(“no\n”);
}
return 0;
}