// Description
Count the number of vowels (a, e, i, o, u) in a lowercase string.
// Input
A single line containing a string of lowercase letters (length <= 1000).
// Output
The number of vowels in the string.
// Hint
Scan the string once and test each character.