1051: 最小公倍数~

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:86 Solved:20

Description

输入一个整数N,接着输入N组数据,每组数据包含两个整数A、B,每输入一组数据就输出一次他们的最小公倍数。

Input

整数N,接着输入N组数据

Output

每输入一组数据就输出一次他们的最小公倍数

Sample Input Copy

3
12 24
6 15
11 20

Sample Output Copy

24
30
220