Problem: A digit is large if it is between and , inclusive. A positive integer is large if all of its digits are large.
You are given an integer . Can it be the sum of two large positive integers with the same number of digits?
Input Format: The first line contains a single integer () — the number of test cases.
The only line of each test case contains a single integer ().
Output Format: For each test case, output if satisfies the condition, and otherwise.
You can output and in any case (for example, strings , , and will be recognized as a positive response).
Note: In the first test case, we can have .
In the second test case, it can be shown that no numbers of equal length and only consisting of large digits can add to .
In the third test case, we can have .
In the fourth test case, we can have .