#include using namespace std; void fast_io() { ios::sync_with_stdio(false); std::cin.tie(nullptr); } int main() { fast_io(); int t; cin >> t; for (; t--;) { long long x, y; cin >> x >> y; if (x >= 5 || x >= y) { cout << "Yes\n"; } else { cout << "No\n"; } } }