Problem2391--C. Minimum Varied Number

2391: C. Minimum Varied Number

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Find the minimum number with the given sum of digits ss such that all digits in it are distinct (i.e. all digits are unique).

For example, if s=20s=20, then the answer is 389389. This is the minimum number in which all digits are different and the sum of the digits is 2020 (3+8+9=203+8+9=20).

For the given ss print the required number.

Input

The first line contains an integer tt (1≤t≤451≤t≤45) — the number of test cases.

Each test case is specified by a line that contains the only integer ss (1≤s≤451≤s≤45).

Output

Print tt integers — the answers to the given test cases.

Sample Input Copy

4
20
8
45
10

Sample Output Copy

389
8
123456789
19

Source/Category