#include using namespace std; int main() { int m,n; cin>>m>>n; int r=m%n; while (r!=0) { m=n; n=r; r=m%n; } cout<<n<<endl; return 0; }
使用您的 aoj 通用账户