1. Problem 문제 확인하기 2. Solution cnt = 0 for i in input(): if i in ['a', 'e', 'i', 'o', 'u']: cnt += 1 print(cnt)