#include <bits/stdc++.h> using namespace std; int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case cout << __gcd(a,b) << endl; } } // 64 位输出请用 printf("%lld")