提交时间:2024-05-29 21:36:23
运行 ID: 48207
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; cout<<__gcd(n,m); return 0; }