while True: try: n=input() if n in ["A","E","I","O","U","a","e","i","o","u"]: print("Vowel") else: print("Consonant") except: break