0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 01:25:25 +00:00
OI-codes/AcWing/872/872.cpp

19 lines
265 B
C++

#include <bits/stdc++.h>
using namespace std;
int gcd(int a, int b) {
if (!b) return a;
return gcd(b, a % b);
}
int main() {
int n, a, b;
cin >> n;
while (n--) {
cin >> a >> b;
cout << gcd(a, b) << endl;
}
return 0;
}