Question: Input a string. Output the starting position and length of the first occurrence of the longest substring of capital Xs in that string. The first letter is in position 1.
For example:
? XabXXXXXxxxXXXXXyyXX position=4 length=5
If there are no Xs in the input string, print "no Xs".
You have to satisfy the requirements specific in the instruction.