a,b=map(int,input().split()) for i in range(min(a,b),0,-1): #逆序循环遍历较小的数,找到最大能整数ab的数,最大公倍数就是ab的乘积除以这个数 if a%i==0 and b%i==0: print(int(a*b/i)) break