4352 - 모음과 자음의 개수

Time Limit: 1s Memory Limit: 128MB

Submissions: 860 Solved: 496
Description

A, E, I, O, U를 모음이라고 가정했을때, 입력으로 들어온 문자열이 몇개의 모음과 자음으로 구성되어 있는지 출력하는 프로그램을 작성하세요.

Assume letters A, E, I, O, and U as the vowels. Write a program that prompts the user to enter a string and displays the number of vowels and consonants in the string.

 

Input

* Line 1 : 테스트케이스 T (1~1,000)

* Line 2 ~ T+1 : 문자열 (공백을 포함하며 길이는 100을 넘지 않는다)

 

Output

* Line 1 ~ T : vowels consonants (공백으로 나누어서 출력)

 

Sample Input
2
Programming is fun
Hello World
Sample Output
5 11
3 7
Source

JAVA2015 PE5.49