# Read the input s = input() words = str.split(s, ' ') count = 0 for i in words: if(i[0] in 'aeiouAEIOU'): count += 1 print(count)