


You have given a number “1234” so you have to convert it in its word form that is “0ne thousand two hundred thirty four”.
You do not need to print anything; it has already been taken care of. Just implement the function
The first line of input contains the ‘T’ number of test cases.
The first line of each test case contains an integer ‘N’.
For each test case, return its word form in the string.
1 <= T <= 100000
1 <= N <= 999998
Time Limit: 1 second
We divide our numbers into individual digits and operate on them starting from the most significant digit.