import java.util.*;
class Programsaddaa
{
   public static void main(String[ ] arg)
   {
boolean isVowel=false;;
Scanner sc=new Scanner(System.in);
char ch=sc.next().charAt(0); 
switch(ch)
{
   case 'a' :
   case 'e' :
       case 'i' :
   case 'o' :
   case 'u' :
   case 'A' :
   case 'E' :
   case 'I' :
   case 'O' :
   case 'U' : 
   isVowel = true;
}
if(isVowel == true) {
   System.out.println(ch+" is  a Vowel");
}
else {
   if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))
System.out.println(ch+" is a Consonant");
   else
System.out.println("Error");
        }
   }
}

Post a Comment

Previous Post Next Post