Given a string of length consisting of only lower case alphabets. Print the total count of good strings. A string is called good if:-
- its length is and consists of only lower case alphabets.
- it mismatches with at exactly different indexes.
- it is lexicographically smaller than .
Since the answer could be large print it with modulo .
Input format
Output format
Print the number of total possible good strings. Since the answer could be large print it with modulo .
Constraints
The sum of over all test cases does not exceed
All good strings are .