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