描述:
Given A and B. Find the least positive M which is a common multiple of both A and B.
输入:
Two positive integers A and B (A,B <= 10000).
输出:
One integer M.
样例输入:
8 12
样例输出:
24
翻译:
描述:
给数字A和B,求出a和B的公倍数的最小正整数M。
输入:
两个正整数A,B(A,B <= 10000)
输出:
一个整数M;
样例输入:
8 12
样例输出:
24