#include using std::cin; using std::cout; int main() { int t; cin >> t; while (t--) { int x, y; cin >> x >> y; if (x >= y or x >= 5) puts("Yes"); else puts("No"); } return 0; }