You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <cstdio>
|
|
using namespace std;
|
|
long long gcd(long long a, long long b)
|
|
{
|
|
return b == 0 ? a : gcd(b, a % b);
|
|
}
|
|
int main()
|
|
{
|
|
long long a, b;
|
|
while (~scanf("%lld%lld", &a, &b))
|
|
printf("%lld\n", a / gcd(a, b) * b);
|
|
return 0;
|
|
} |