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