You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
303 B

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
LL a, B, c;
LL gcd(LL x, LL y) {
return y ? gcd(y, x % y) : x;
}
LL lcm(LL x, LL y) {
return x * y / gcd(x, y);
}
int main() {
cin >> a >> b >> c;
cout << lcm(lcm(a, b), c) << endl;
return 0;
}