##煎蛋提杰
2025-09-24 17:09:45
发布于:四川
5阅读
0回复
0点赞
超模题解
#include<bits/stdc++.h>
using namespace std;
int main(){
int a, b;
cin >> a >> b;
cout << "GCD=" << __gcd(a,b) << endl;
cout << "LCM=" << a * b / __gcd(a, b) << endl;
return 0;
}
全部评论 2
3天前 来自 四川
0666
3天前 来自 四川
0
有帮助,赞一个