In the present problem, we always assume that all the polynomials mentioned have the following properties (take f(x) for example ):
(1) 0 < deg(f) <= 20, so we can assume that f(x) has the following form:
f(x)=anxn+an-1xn-1+...+a1x+a0 (an!=0 and 1<=n<=20)
(2) ai ( i=0,1,...,n ) is integer, and ?2^31<=ai<=2^31-1;
(3) an = 1.
We call a polynomial G(x) "good" polynomial, when there is no polynomial F(x) such that
F2|G
Given a polynomial f(x), it is known that f(x) can be factorized as follow:
f(x)=GtmtGt-1mt-1...G1m1 (Gi is good and mt>mt-1>...>m1>=1)
It抯 easy to prove that this way of factorizing is unique. You job is to factorize the given polynomials in this way.
To make input and output easy, a polynomial f(x)
f(x)=anxn+an-1xn-1+...+a1x+a0 (an!=0 and 1<=n<=20)
is represented as
n an an-1 ... a1 a0
In this representation, we use (n+2) integers, which are separated by single blanks.