#include #include #include #include #include #include using namespace std; template inline void R(Type &x) { int c = getchar(); bool neg = 0; for (; c < 48 || c > 57; c = getchar())if (c == '-')neg = true; for (x = 0; c > 47 && c < 58; x = (Type) 10 * x + c - 48, c = getchar()); if (neg)x = -x; } int n; double perc; int main() { int T; R(T); while (T--) { scanf("%lf", &perc); if (perc <= 1.00000) puts("Yes"); else puts("No"); } return 0; }