You are given an integer which is a product of LCM and GCD. Your task is to find all the pairs of x and y for which their product of LCM and GCD is equal to the given number.
Note: Pair x and y is different from y and x.
Input format
Output format
For each test case, print a single line containing the Integer.
Constraints
1≤T≤100
1≤N≤4×109
For test input 1, N= 1, only pair is (1, 1).
For test input 2, N = 2, pair will be (1, 2) and (2, 1).
For test input 3, N = 16, pair will be (1, 16), (2, 8), (4, 4), (8, 2), (16, 1).