#include <iostream> #include <numeric> using namespace std; int main() { int a, b; while(scanf("%d %d", &a, &b) != EOF) { printf("%d\n", a*b/ gcd(a, b)); // (1) } } // 64 位输出请用 printf("%lld")