banana
3
def count_vowels(word): count = 0 for ch in word.lower(): if ch in 'aeiou': count += 1 return count word = input().strip() print(count_vowels(word))