#K65132. Count the Vowels
Count the Vowels
Count the Vowels
You are given a set of strings. Your task is to count the number of vowels (i.e., \(a, e, i, o, u\) in both lowercase and uppercase) in each string.
For each test case, you will be provided with a single string. You must calculate and output the number of vowels present in the string. This problem tests your basic string manipulation and iteration skills.
inputFormat
The first line of input contains an integer \(t\) representing the number of test cases. Each of the following \(t\) lines contains a single string. Each string has at most 100 characters.
outputFormat
For each test case, output a single line containing an integer which is the count of vowels in the corresponding string. Consider both uppercase and lowercase vowels.
## sample1
Hello
2