#D1724. UOIAUAI
UOIAUAI
UOIAUAI
Given a lowercase English letter c, determine whether it is a vowel. Here, there are five vowels in the English alphabet: a
, e
, i
, o
and u
.
Constraints
- c is a lowercase English letter.
Input
The input is given from Standard Input in the following format:
c
Output
If c is a vowel, print vowel
. Otherwise, print consonant
.
Examples
Input
a
Output
vowel
Input
z
Output
consonant
Input
s
Output
consonant
inputFormat
Input
The input is given from Standard Input in the following format:
c
outputFormat
Output
If c is a vowel, print vowel
. Otherwise, print consonant
.
Examples
Input
a
Output
vowel
Input
z
Output
consonant
Input
s
Output
consonant
样例
s
consonant