Use the Indian standard unit of numbering.
Example :
If the given input is 62, the output should be 'Sixty two' (without quotes).
Similarly, if the input is 1000000, the output should be 'Ten lakh'.
The first line contains an integer 't' which denotes the number of test cases or queries to be run. Then the test cases follow.
The first and only line of each test case or query contains the integer 'num' which is to be converted to words.
For each test case, return the number expressed in words.
Output for every test case will be printed in a separate line.
Note:- All letters except the first one should be small.
Note
You are not required to print anything, and it has already been taken care of. Just implement the function.
Constraints :
1 <= t <= 10^4
0 <= N <= 10^9
where 't' is the number of test cases, and 'N' is the given number.
Time Limit: 1 sec.
Sample Input 1:
2
72
1
Sample Output 1:
Seventy two
One
Explanation For Sample Output 1:
In the first test case, the given number is 72, so the output will be "Seventy two".
In the second test case, the given number is 1, so the output will be "One".
Sample Input 2:
2
55
62
Sample Output 2:
Fifty five
Sixty two