#include<stdio.h>
int main(){
int T,x=0,i;
char s[50];
scanf("%d",&T);
while(T--){
scanf("%s",s);
for(i=0;s[i] !='\0';i++){
if(s[i]=='a'||s[i]=='e'||s[i]=='i'||s[i]=='o'||s[i]=='u'){
x=x+1;
}
}
printf("%d\n",x);
x=0;
}
return 0;
}