#include<bits/stdc++.h> using namespace std; int x,y; int main(){ cin>>x>>y; cout<<__gcd(x,y)<<x*y/__gcd(x,y); return 0; }
Wa仨