1162: 最小公倍数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:50 Solved:46

Description

求两个数的最小公倍数。

Input

输入有多组测试数据,每组有两个整数n,m(1=<n,m<232)。

Output

输出n和m 的最小公倍数。

Sample Input Copy

4 6
3 7

Sample Output Copy

12
21