0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 17:05:25 +00:00
OI-codes/Luogu/P1170/P1170.cpp

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;
}