问题3409--Friend Number

3409: Friend Number

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Given a positive integer x, let P(x) denotes the product of all x's digits. Two integers x and y are friend numbers if P(x) = P(y). Here comes the problem: Given a positive integer x, of course it has a lot of friend numbers, find the smallest one which is greater than x.

输入

There are multiple test cases. The first line of input is an integer T (0 < T < 230) indicating the number of test cases. Then T test cases follow. Each case is an integer x (0 < x <= 101000). You may assume that x has no leading zero.

输出

For each test case, output the result integer in a single line. You should not output a number with leading zero.

样例输入 Copy

3
12
19
222

样例输出 Copy

21
33
241