#P1467A. Wizard of Orz

    ID: 5719 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsgreedymath*900

Wizard of Orz

No submission language available for this problem.

Description

There are nn digital panels placed in a straight line. Each panel can show any digit from 00 to 99. Initially, all panels show 00.

Every second, the digit shown by each panel increases by 11. In other words, at the end of every second, a panel that showed 99 would now show 00, a panel that showed 00 would now show 11, a panel that showed 11 would now show 22, and so on.

When a panel is paused, the digit displayed on the panel does not change in the subsequent seconds.

You must pause exactly one of these panels, at any second you wish. Then, the panels adjacent to it get paused one second later, the panels adjacent to those get paused 22 seconds later, and so on. In other words, if you pause panel xx, panel yy (for all valid yy) would be paused exactly xy|x−y| seconds later.

For example, suppose there are 44 panels, and the 33-rd panel is paused when the digit 99 is on it.

  • The panel 11 pauses 22 seconds later, so it has the digit 11;
  • the panel 22 pauses 11 second later, so it has the digit 00;
  • the panel 44 pauses 11 second later, so it has the digit 00.

The resulting 44-digit number is 10901090. Note that this example is not optimal for n=4n = 4.

Once all panels have been paused, you write the digits displayed on them from left to right, to form an nn digit number (it can consist of leading zeros). What is the largest possible number you can get? Initially, all panels show 00.

The first line of the input contains a single integer tt (1t1001 \le t \le 100) — the number of test cases. Each test case consists of a single line containing a single integer nn (1n21051 \le n \le 2\cdot10^5).

It is guaranteed that the sum of nn over all test cases does not exceed 21052\cdot10^5.

For each test case, print the largest number you can achieve, if you pause one panel optimally.

Input

The first line of the input contains a single integer tt (1t1001 \le t \le 100) — the number of test cases. Each test case consists of a single line containing a single integer nn (1n21051 \le n \le 2\cdot10^5).

It is guaranteed that the sum of nn over all test cases does not exceed 21052\cdot10^5.

Output

For each test case, print the largest number you can achieve, if you pause one panel optimally.

Samples

Sample Input 1

2
1
2

Sample Output 1

9
98

Note

In the first test case, it is optimal to pause the first panel when the number 99 is displayed on it.

In the second test case, it is optimal to pause the second panel when the number 88 is displayed on it.