#ENGLISHP09. Least Common Multiple

Least Common Multiple

Description

Given A and B. Find the least positive M which is a common multiple of both A and B.

Input Format

Two positive integers A and B (A,B <= 10000).

Output Format

One integer M.

输入数据 1

8 12

输出数据 1

24