V_list = ['a', 'e', 'i', 'o', 'u']
while True:
    try:
        print("Vowel" if input().lower() in V_list else "Consonant")
    except:
        break