您的位置:首页 > 其它

51nod_1012 最小公倍数LCM

2017-04-24 11:08 267 查看
1012 最小公倍数LCM

基准时间限制:1 秒 空间限制:131072 KB 分值: 0

输入2个正整数A,B,求A与B的最小公倍数。

Input

2个数A,B,中间用空格隔开。(1<= A,B <= 10^9)

Output

输出A与B的最小公倍数。

Input示例

30 105

Output示例

210

代码:

#include<cstdio>
#include<iostream>
using namespace std;
typedef long long LL;
LL gcd(LL a,LL b){
if(b==0)
return a;
gcd(b,a%b);

}
int main(){
LL a,b;
cin>>a>>b;
LL t=gcd(a,b);
LL lcm=(a*b)/t;
cout<<lcm<<endl;

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: