#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; unordered_map m; bool f(ll x,ll y){ if(x==y) return true; if(m.count(x)) return m[x]; bool b=false; for(ll i=x+1;i<=sqrt(x);i++){ if(i*(x-i)>y) continue; if(f(i*(x-i),y)){ b=true; break; } } if(b) return true; else return false; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ ll x,y; cin>>x>>y; if(x>=y){ cout<<"Yes"<