A - UOIAUAI
Editorial
/
Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 100 点
問題文
英小文字 c が与えられるので、c が母音であるか判定してください。ここで、英小文字のうち母音は a
、e
、i
、o
、u
の 5 つです。
制約
- c は英小文字である。
入力
入力は以下の形式で標準入力から与えられる。
c
出力
c が母音であるとき、vowel
と、そうでないとき consonant
と出力せよ。
入力例 1
a
出力例 1
vowel
a
は母音なので、vowel
と出力します。
入力例 2
z
出力例 2
consonant
入力例 3
s
出力例 3
consonant
Score : 100 points
Problem Statement
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
.
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