#Lutece0349. The Two Note Rag

The Two Note Rag

Migrated from Lutece 349 The Two Note Rag

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

Since most computers are binary machines, both powers of two and problems that involve only two values are important to computer scientists. The following problem has to do with powers of two and the digits 11 and 22.

Some powers of two as decimal values, such as

29=51229 = 512 and 289=618,970,019,642,690,137,449,562,112289 = 618,970,019,642,690,137,449,562,112

end in a string of digits consisting only of 11's and 22's (1212 for 2929 and 21122112 for 289289 ). In fact, it can be proved that:

For every integer RR , there exists a power of 22 such that 2K2K uses only the digits 11 and 22 in its last RR digits.

This is shown a bit more clearly in the following table:

title

Your job is to write a program that will determine, for given RR , the smallest KK such that 2K2K ends in a string of RR digits containing only 11's and 22's.

Input

The first line of the input contains a single decimal integer, NN , 1N501\leq N\leq 50 , the number of problem data sets to follow. Each data set consists of a single integer RR , 1R201\leq R\leq 20 , for which we want a power of 22 ending in a string of RR 11's and 22's.

Output

For each data set, you should generate one line of output with the following values: The data set number as a decimal integer (start counting at one), a space, the input value RR , another space, and the smallest value KK for which 2K2^K ends in a string of RR 11's and 22's.

Samples

6 
1 
2 
4 
5 
7 
15
1 1 1 
2 2 9 
3 4 89 
4 5 589 
5 7 3089 
6 15 11687815589

Resources

Greater New York 2008