lst = ['a','e','i','o','u']

while 1:

    try:
        n = input().lower()
        print('Vowel') if n in lst else print('Consonant')

    except:
        break