Submit solution
Points:
0.10
Time limit:
1.0s
Memory limit:
64M
Input:
stdin
Output:
stdout
Authors:
Problem type
Viết chương trình nhập vào 1 ký tự. Kiểm tra ký tự đã nhập là nguyên âm hay phụ âm.
Input
Input một dòng duy nhất là kí tự c
Nếu c là phụ âm in ra "consonant"
Nếu c là nguyên âm in ra "vowel"
Note: Nguyên âm là các ký tự ueoai
Output
Output một dòng duy nhất là kiểu kí tự
Examples
Input
c
Output
consonant
Input
o
Output
vowel
Comments