Competitions
DSA Week 1
LCM of two integers
Find the LCM (least common multiple) of two integers.
Input data
Two positive integers a and b\:(a, b \le 2 \cdot 10^9).
Output data
Print the LCM of a and b.
Examples
Input example #1
42 24
Output example #1
168