summaryrefslogtreecommitdiff
path: root/comp/hw/106/3.py
blob: 3f48f702f04e47b0347c6534cff0ac5e7e037826 (plain)
1
2
3
4
5
6
7
8
9
vowels = ['a','e','i','o','u']

counter = 0
word = input()
for i in word:
    for j in vowels:
        if j == i:
            counter = counter + 1 
print(counter)