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