#R8. 最小公倍

最小公倍

Background

Special for beginners, ^_^

Description

给定两个正整数a,b,求a,b的最小公倍数。(即[a,b])

Format

Input

两个整整数,a,b

Output

一个正整数,表示[a,b]

Samples

12 24
24
8 12
24

对于输入输出的所有数据,保证不超过unsigned long long(18446744073709551615)

Limitation

1s, 1024KiB for each test case.