Run ID:138866
提交时间:2025-11-30 11:46:06
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,m; cin>>a>>b; while(a<b){ if(a%a==0 and b%a==0){ m=b; } b--; } cout<<m; return 0; }