Run ID:1822
提交时间:2023-11-11 18:17:16
# include<iostream> int main(){ int a,b,c; cin>>a>>b; c=a%b; while(c!=0){ a=b; b=c; c=a&b; } return 0; }