Input
The input contains multiple test cases, each of which contains two positive integers, the GCD and the LCM. You can assume that these two numbers are both less than 2^63.Output
For each test case, output a and b in ascending order. If there are multiple solutions, output the pair with smallest a + b.Sample Input
3 60
Sample Output
12 15