0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:05:24 +00:00
OI-codes/LibreOJ/6248/6248.cpp

22 lines
341 B
C++

#include <iostream>
#include <algorithm>
using std::cin;
using std::cout;
const char endl = '\n';
long long a, b, c;
inline long long lcm(long long a, long long b) {
return a / std::__gcd(a, b) * b;
}
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b >> c;
cout << lcm(a, lcm(b, c)) << endl;
return 0;
}