You are writing out a list of numbers. Your list contains all numbers with exactly digits in its decimal representation which are equal to , for each between 1 and 9, inclusive. You are writing them out in ascending order.
For example, you might be writing every number with two '1's and one '5'. Your list would begin 115, 151, 511, 1015, 1051.
Given , the last number you wrote, compute what the next number in the list will be.
输入格式
The first line of input contains an integer , the number of test cases in the input. lines follow, one for each test case, each containing a single integer .
输出格式
For each test case, output
Case #:
where is the test case number, starting from 1, and is the next integer in the list.