SPCQ - Gopu and Digits Divisibility

One day Little Gopu was playing with numbers. As he is little boy, he was wondering about divisibility rules that how they apply and what is the logic behind them. Few days ago he has also learnt how to find sum of digits of a number. 

He thought about finding the smallest number greater than or equal to n, which is a "nice" number. A number is called "nice" if it is divisible by sum of its digits. He is unable to solve this puzzle. Can you write a program to help the Little Gopu?

eg. if n = 11, 11 is not divisible by 1 + 1 = 2, But 12 is divisible by 1 + 2 = 3. So answer for case n = 11 should be 12.

Input

First line contains T : number of test cases. (1 ≤ T ≤ 104).

For each test case, It contains a single integer n in a line, (1 ≤ n ≤ 1018).

Output

For each test case, output the smallest "nice" number greater or equal to n.

Example

Input:
3
11
22
2 Output: 12
24

Added by:praveen123
Date:2013-12-26
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:IITK ACA CSE online judge

hide comments
2015-01-22 04:11:06 [Lakshman]
@Dariusz Lelek I checked with some randon cases and for maximum your code is giving wrong answer. Check with this input
2
4578678567857
6709978986847584
output
4578678567876
6709978986847640
2015-01-22 03:25:37 darol
Hmm i keep getting WA not sure whats wrong, set the limits for n. Checked few outputs with calc - seems giving correct answers. If you could tell me what am i doing wrong i would be greatful! :)
Heres my coding in Java: <snip>

Last edit: 2023-08-06 11:19:38
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.