#ACSL1819J2. String Stats
String Stats
PROBLEM: Given a sentence (up to 1024 characters long), output the following:
- The number of different letters. This will be a number from 1 to 26, inclusive.
- The number of vowels. Vowels are the letters a, e, i, o, and u.
- The number of uppercase letters.
- The number of times that the most frequent letter appears. There is no distinction between lowercase and uppercase letters.
- The longest word in the sentence. If there is a tie, print the one that appears first when sorting these words alphabetically without regard to lowercase and uppercase.
INPUT:
One line of data, containing a sentence, up to 1024 characters long.
OUTPUT:
Print the five statistics specified above in that order.
SAMPLE INPUT
The quick brown fox, named Roxanne, jumped over Bruno, a lazy dog.
SAMPLE OUTPUT
25
19
3
6
Roxanne