Every word in the English language must contain at least one vowel [aeiou]
. In addition no English word may have more than 2 consecutive vowels. For example aabeecaa
may be a real English word however ytfhg
and beauty
are not. Given a list of words, determine how many of them are definitely not English.
Input Specification
The first line of input contains representing the number of words that must be checked.
The next lines each contain a word with only lowercase letters.
Output Specification
Print how many of the words are definitely not English words.
Sample Input
4
saidoj
pol
afggueia
lkm
Sample Output
2
Comments