#include using namespace std; int main() { int T; cin >> T; while (T--) { double x; cin >> x; if (x <= 1.0)cout << "Yes" << endl; else cout << "No" << endl; } return 0; }