Vowel or Consonant

VERY EASY · C · 2000ms

Rina is building a small spellchecking kiosk for the campus library. Her first test: given a single letter typed by a visitor, tell them whether it's a vowel or a consonant. Read a single lowercase English letter and print "VOWEL" or "CONSONANT".

Input

One lowercase letter.

Output

"VOWEL" or "CONSONANT".

Constraints

The character is a lowercase English letter.

Sample Input

e

Sample Output

VOWEL
main.c
Loading editor…

Write C, then Run (custom I/O) or Submit (sample tests). ⌘/Ctrl+Enter submits.

Vowel or Consonant · DIU ContestHub