Run ID:146143
提交时间:2026-01-27 11:09:56
#include<iostream> using namespace std; int main(){ int a,b,temp; cin>>a>>b; while(b!=0){ temp=a%b; a=b; b=temp; } cout<<a; return 0; }