Run ID:96687
提交时间:2024-11-09 11:52:24
#include<iostream> uisng namespace std; int main(){ int a,b,yushu; cin>>a>>b; yushu=a%b; while(yushu != 0){ a=b; b=yushu; } cout<<b; return 0; }