NEFU116 GCD

#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

long long gcd(long long a,long long b){
	if(b==0) return a;
	return gcd(b,a%b);
}

int main(){
	long long a,b;
	while(scanf("%lld%lld",&a,&b)!=EOF){
		long long c=gcd(a,b);
		printf("%lld\n",a*b/c);
	}
	return 0;
}

  

posted @ 2014-08-27 09:55  chenjunjie1994  阅读(159)  评论(0编辑  收藏  举报