


The first line of input contains an integer ‘T’ denoting the number of test cases.
The next ‘T’ lines represent the ‘T’ test cases.
The first line of each test case contains a single integer N denoting the integer.
For each test case, print a string representing the integer in words.
You don’t have to print anything; it has already been taken care of. Just implement the given function.
1 <= T <= 100
1 <= N <= 999999999
Time Limit: 1 sec
The idea is to iterate through the number check for the place value of each digit and starting from the extreme left, we will check by dividing the number by place value integer like crore by 10000000 and similarly by other values.