提交时间:2025-11-16 20:27:39
运行 ID: 73826
#include <bits/stdc++.h> using namespace std; int main( ) { long a,b,w; cin>>a>>b; w=__gcd(a,b); cout<<w; return 0; }