mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
19 lines
265 B
C++
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;
|
|
}
|