#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: and so the method obviously works. To multiply a number by all you have to do is move the first digit to the end of the number, and .
Lukas wants to demonstrate that this last method works for any . To do this he will ask his audience for values of 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 gives a list of integers for which multiplying by 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 digits.
Input
The input is a single decimal number with at most digits after the decimal point.
Output
Output a list of all positive integers less than 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