Run ID:152500

提交时间:2026-04-26 14:41:52

#include<bits/stdc++.h> using namespace std; int main(){ int x,y,c; cin>>x>>y; c=__gcd(x,y); cout<<c; return 0; }