#abc049a. [abc049_a]UOIAUAI
[abc049_a]UOIAUAI
Problem Statement
Given a lowercase English letter , determine whether it is a vowel. Here, there are five vowels in the English alphabet: a
, e
, i
, o
and u
.
Constraints
- is a lowercase English letter.
Input
The input is given from Standard Input in the following format:
Output
If is a vowel, print vowel
. Otherwise, print consonant
.
Sample Input 1
a
Sample Output 1
vowel
Since a
is a vowel, print vowel
.
Sample Input 2
z
Sample Output 2
consonant
Sample Input 3
s
Sample Output 3
consonant