import java.io.*;
public class findvowel
{
public static void main(String[] args) throws IOException
{
String s;
char c;
int i,j,cnt;
cnt=0;
System.out.println(“Enter the String : “);
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
s=br.readLine();
for(i=0;i<=j;i++)
{
c=s.charAt(i);
if(c==’a'||c==’A'||c==’i'||c==’I'||c==’o'||c==’O'||c==’u'||c==’U'||c==’e'||c==’E')
{
cnt++;
}
}
System.out.println(cnt);
}
}