728x90
반응형

단순 문자열 문제이다. 입력에 a, e, i, o, u가 몇 개 있는지 개수를 세면 된다.

ans = 0
for c in input():
    if c in ['a', 'e', 'i', 'o', 'u']:
        ans += 1
print(ans)
728x90
반응형

+ Recent posts