#include int main(){ int test; scanf("%d",&test); while(test>0){ float p; scanf("%f",&p); if(p<=1.0){ printf("Yes\n"); }else{ printf("No\n"); } test--; } return 0; }