mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 10:18:47 +00:00
22 lines
365 B
C++
22 lines
365 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int gcd(int a, int b) {
|
|
if (b == 0) {
|
|
return a;
|
|
}
|
|
return gcd(b, a % b);
|
|
}
|
|
|
|
int main() {
|
|
int t;
|
|
cin >> t;
|
|
while (t--) {
|
|
int ax, ay, bx, by;
|
|
cin >> ax >> ay >> bx >> by;
|
|
cout << (gcd(abs(ax - bx), abs(ay - by)) == 1 ? "no" : "yes") << endl;
|
|
}
|
|
return 0;
|
|
}
|