题解 | #判断是元音还是辅音#
判断是元音还是辅音
https://www.nowcoder.com/practice/7eb4df4d52c44d309081509cf52ecbc4
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


