eolymp
bolt
Try our new interface for solving problems
Problems

Number Trick

Number Trick

prb6251 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: sqrt(25) = 5 and sqrt(5776) = 76 so the method obviously works. To multiply a number by x = 2.6 all you have to do is move the first digit to the end of the number, 135 × 2.6 = 351 and 270270 × 2.6 = 702702.

Lukas wants to demonstrate that this last method works for any x. To do this he will ask his audience for values of x 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 x gives a list of integers for which multiplying by x 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 8 digits.

Input

A single decimal number x (1x < 1000) with at most 4 digits after the decimal point.

Output

Output a list of all positive integers less than 108 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**".

Time limit 1 second
Memory limit 128 MiB
Input example #1
2.6
Output example #1
135
270
135135
270270
Input example #2
3.1416
Output example #2
No solution
Source 2013 ACM NCPC, October 5, Problem C