#include <iostream> #include <algorithm> using namespace std; int main() { int a, b; while (cin >> a >> b) { // 注意 while 处理多个 case int max_num=max(a,b); while(true) { if(max_num%a==0&&max_num%b==0) { break; } max_num++; } cout<<max_num; } } // 64 位输出请用 printf(&q...