Files
kattis/countthevowels.py
2023-06-23 22:28:32 +02:00

3 lines
78 B
Python

s = input().strip().lower()
print(sum([s.count(vowel) for vowel in "aeiou"]))