0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:45:25 +00:00
OI-codes/Luogu/problem/P1170/P1170.cpp
2021-01-02 15:30:52 +08:00

22 lines
356 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;
}