

# 백준 #18409 (母音を数える (Counting Vowels))
# N 문자 수 입력
N = int(input())
# S 문자열 입력
Text = input()
# Result 결과 출력
Result = 0
for i in range (N) :
if Text[i] == 'a' or Text[i] == 'i' or Text[i] == 'o' or Text[i] == 'e' or Text[i] == 'u' :
Result += 1
print(Result)