Run ID:138208
提交时间:2025-11-23 18:10:36
#include <bits/stdc++.h> using namespace std; int gcd(int x,int y){ if(x%y==0){ rteurn y; } return gcd(y,x%y); } int main(){ int a,c; cin>>a>>c; cout<<gcd(a,c); return 0; }