why its showing wrong. All the test case is showing Yes but last test case is No

int t; cin>>t; while(t–) { int x1,x2,y1,y2; cin>>x1,x2,y1,y2; if(x1 == x2 && y1 != y2) { cout<<“Yes”<

reading is wrong. should be cin >> x1 >> x2 >> y1 >> y2;