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)
PREVIOUS[백준] 1193번 분수찾기 _ 문제 풀이