Problem Statment
A number N is represented in Linked List such that each digit corresponds to a node in linked list. You need to add 1 to it.
Input
The First line contains the number of test cases, and for each test case a single line of input denotes an big number N.
Output
For each test case, print the resulting number in a new line.
Example 1:Input: 2999
Output: 3000