It is JJ's birthday and you decide to gift him a string
of length . But you also know that JJ does not like palindromes so you decide that none of the substrings of of length should be a palindrome.
Can you find any suitable string which can be gifted to JJ?
Recall that a string is called palindrome if it reads the same backwards and forwards, for e.g. and are palindromic strings.
Input Format
- The first line contains - the number of test cases. Then the test cases follow.
- The first and only line of each test case contains an integer - the length of the string to be constructed.
Output Format
For each test case, output a string of length such that none of its substrings (of length ) is a palindrome.
If there are multiple strings which satisfy the condition, print any.
Constraints
Sample Input 1
3
2
2
4
Sample Output 1
gl
hf
waow
Explanation
Test case 1: is the only substring of length and it is not a palindrome.
Test case 2: is the only substring of length and it is not a palindrome.
Test case 3: Following are the substrings of length :
- : , ,
- : ,
- :
We can see that none of these substrings is a palindrome.
ConversionConversion EmoticonEmoticon