Run ID:152497
提交时间:2026-04-26 14:40:03
#include<bits/stdc++.h> using namespace std; int main(){ int x,y,c; cin>>x>>y; c=__gcd(x/y); cout<<c; return 0; }