시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB74424262.687%

문제

Given a positive integer n, your task is to find a positive integer m, which is a multiple of n, and that m contains the least number of different digits when represented in decimal. For example, number 1334 contains three different digits 1, 3 and 4.

입력

The input consists of no more than 50 test cases. Each test case has only one line, which contains a positive integer n ( 1<=n < 65536). There are no blank lines between cases. A line with a single `0' terminates the input.

출력

For each test case, you should output one line, which contains m. If there are several possible results, you should output the smallest one. Do not output blank lines between cases.

예제 입력 1

7
15
16
101
0

예제 출력 1

7
555
16
1111