def count vowels(text): vowels = "aeiouAEIOU" count = 0 for char in text: if char in vowels: count += 1 return count vowel_count = count_vowels(input_text) print(f"The number of vowels in the text is: {vowel_count}")