#Lutece0745. Inverse Divisor Sums

Inverse Divisor Sums

Migrated from Lutece 745 Inverse Divisor Sums

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Your friend Odd Even is obsessed with number theory. He likes to learn new operations to perform on numbers, and to spend endless hours applying his newly acquired knowledge to numbers. For instance, last year he learned about Euler's totient function ϕ(n)\phi(n), which counts the number of positive integers less than or equal to nn that are relatively prime to nn. Shortly after that, he went on a spree and calculated ϕ(n)\phi(n) for all integers nn from 11 up to one million by hand.Recently, he learned that the sum of all divisors of a number NN could be calculated by the following formula:

$sum\ of\ divisors(N)=\prod_{i=1}^{r}\frac{p_i^{(a_i+1)}-1}{p_i-1} $

Here, p1a1p2a2prarp_1^{a_1}p_2^{a_2}\cdots p_r^{a_r} is the factorization of NN into prime factors where each pip_i is different and aia_i is the maximum power of pip_i such that piaip_i^{a_i} that divides NN.

Odd Even wants to calculate the function in reverse; given a positive integer NN he wants to nd all positive integers MM having NN as its sum of divisors, and he wants them written out nicely in increasing order. You think this will take too long, so you have decided to intervene and offer computer assistance.

Write a computer program that does the following: given a positive integer NN, output a list of all the integers MM having NN as its sum of divisors, in increasing order, or inform Odd Even that no such numbers exists.

Input

The first line of the input consists of a single integer TT, the number of test cases. The TT following lines each contain a single integer NN.

Output

For each test case, output all such numbers on one line, in increasing order, with a single space between each number. If no numbers exist, output none! (without quotes).

Samples

4
7
2
126
1524
4
none!
68 82
704 1083 1523

Note

0<N1090 < N \leq 10^9

The output can be large. For Java, it is advisable to buffer the output using StringBuilder.

Resources

IDI Open Programming Contest April 21st, 2012 - NTNU