#include  <stdio.h>
#include <ctype.h>

int main() {
    char str[101];
    int i,  vowels = 0;
    fgets(str, sizeof(str), stdin);
    
    for(i = 0; str[i] && str[i] != '\n'; i++) {
        if(!isalpha(sta[i])) {
            printf("Invalid input");
            return 0;
        }
        char ch = tolower(str[i]);
        if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
                         vowels++;
    }
    
    printf("%d", vowels);
    return 0;
}