#C8516. First Character Type - Vowel or Consonant
First Character Type - Vowel or Consonant
First Character Type - Vowel or Consonant
Given a non-empty string consisting of lowercase alphabetical characters, determine if the first character is a vowel or a consonant. In this problem, vowels are defined as ({a, e, i, o, u}). If the first character is one of these vowels, output "Vowel"; otherwise, output "Consonant". The input string is provided via standard input, and the result should be printed to standard output.
inputFormat
The input consists of a single non-empty string that only contains lowercase alphabetical characters. The string is read from standard input.
outputFormat
Print a single word: "Vowel" if the first character of the string is one of a, e, i, o, u, and "Consonant" otherwise. The output should be printed to standard output.## sample
apple
Vowel