[백준] 1264번 모음의 개수 _ 문제 풀이



1. 문제

https://www.acmicpc.net/problem/1264

2. 풀이

while True:
    cnt = 0
    _input = input()
    if _input == '#':
        break
    for x in _input:
        if x in 'aeiouAEIOU':
            cnt += 1
    print(cnt)