#K34597. Count Vowels and Consonants

    ID: 25344 Type: Default 1000ms 256MiB

Count Vowels and Consonants

Count Vowels and Consonants

Given a string s, count the number of vowels and consonants in the string. For this problem, vowels are defined as the characters \(a, e, i, o, u\) (both lowercase and uppercase). All other characters in the string are considered consonants. You may assume that the string consists only of alphabetic characters.

The task is to read the input string from standard input, compute the counts of vowels and consonants, and output the two counts separated by a space.

inputFormat

The input consists of a single line containing a non-empty string s which only includes alphabetical characters.

outputFormat

Output two integers separated by a single space: the number of vowels followed by the number of consonants in the string.

## sample
aeiou
5 0