A - UOIAUAI Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 100100

問題文

英小文字 cc が与えられるので、cc が母音であるか判定してください。ここで、英小文字のうち母音は aeiou55 つです。

制約

  • cc は英小文字である。

入力

入力は以下の形式で標準入力から与えられる。

cc

出力

cc が母音であるとき、vowel と、そうでないとき consonant と出力せよ。


入力例 1Copy

Copy
a

出力例 1Copy

Copy
vowel

a は母音なので、vowel と出力します。


入力例 2Copy

Copy
z

出力例 2Copy

Copy
consonant

入力例 3Copy

Copy
s

出力例 3Copy

Copy
consonant

Score : 100100 points

Problem Statement

Given a lowercase English letter cc, determine whether it is a vowel. Here, there are five vowels in the English alphabet: a, e, i, o and u.

Constraints

  • cc is a lowercase English letter.

Input

The input is given from Standard Input in the following format:

cc

Output

If cc is a vowel, print vowel. Otherwise, print consonant.


Sample Input 1Copy

Copy
a

Sample Output 1Copy

Copy
vowel

Since a is a vowel, print vowel.


Sample Input 2Copy

Copy
z

Sample Output 2Copy

Copy
consonant

Sample Input 3Copy

Copy
s

Sample Output 3Copy

Copy
consonant


2025-04-01 (Tue)
04:43:52 +00:00