#Lutece0858. Number Trick

Number Trick

Migrated from Lutece 858 Number Trick

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

Lukas is to hold a presentation on useful mathematical tricks. E.g., to take the square root of a number you just need to remove the first half of the number. To convince his audience he uses the well tested method of proof by example: 25=5\sqrt{25} = 5 and 5776=76\sqrt{5776} = 76 so the method obviously works. To multiply a number by X=2.6X = 2.6 all you have to do is move the first digit to the end of the number, 135×2.6=351135 \times 2.6 = 351 and 270270×2.6=702702270270 \times 2.6 = 702702.

Lukas wants to demonstrate that this last method works for any XX. To do this he will ask his audience for values of XX and then show them example multiplications for which the method works. Lukas has noticed that he can not just pick arbitrary numbers for his examples, so now he wants your help. Can you write a program that given XX gives a list of integers for which multiplying by XX is equivalent to moving the first digit to the end of the number? Lukas does not like very large numbers so do not list any numbers with more than 88 digits.

Input

The input is a single decimal number X(1X<1000)X(1 \leq X < 1000) with at most 44 digits after the decimal point.

Output

Output a list of all positive integers less than 10810^8 for which Lukas' second trick works. Write the numbers in ascending order, one number per line. If the list is empty, output instead No solution.

Samples

2.6
135
270
135135
270270
3.1416
No solution

Resources

Nordic Collegiate Programming Contest 2013