题解
2023-09-11 13:20:26
发布于:广东
2阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
while (true)
{
int cnt=0;
for (int i=2;i<=max(a,b);i++)
{
if (a%i==0 && b%i==0)
{
a/=i;
b/=i;
cnt++;
}
}
if (cnt==0)
break;
}
cout << a << ' ' << b;
return 0;
}
这里空空如也
有帮助,赞一个