mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 03:38:47 +00:00
21 lines
340 B
C++
21 lines
340 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int t, u, v;
|
|
long long uu, vv, k, x, y;
|
|
|
|
int main() {
|
|
cin >> t;
|
|
while (t--) {
|
|
cin >> u >> v;
|
|
uu = 1ll * u * u;
|
|
vv = 1ll * v * v;
|
|
k = __gcd(uu, vv);
|
|
x = -(uu / k);
|
|
y = vv / k;
|
|
cout << x << ' ' << y << endl;
|
|
}
|
|
return 0;
|
|
}
|