Kevin and Stuart want to play the 'The Minion Game'.
- Both players are given the same string, S.
- Both players have to make substrings using the letters of the string S.
- Stuart has to make words starting with consonants.
- Kevin has to make words starting with vowels.
- The game ends when both players have made all possible substrings.
A player gets +1 point for each occurrence of the substring in the string S.
- String S = BANANA
- A single line of input containing the string S.
- The string S will contain only uppercase letters:[A - Z] .
0 < len(s) <= 10^6
- Print one line: the name of the winner and their score separated by a space.
- If the game is a draw, print Draw.