← Back to List
18409번: 母音を数える (Counting Vowels) ↗
Solutions
Python 3
59 B | 59 chars
input() s=input() print(sum([s.count(i) for i in "aeiou"]))