Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
78109 张之隽 按班分组 C++ Accepted 0 MS 272 KB 206 2024-06-16 14:38:09

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int m,n; cin>>m>>n; int x=1; int i=1; while(i<=m&&i<=n){ if(n%i==0&&m%i==0){ x=i; } i++; } cout<<x; return 0; }