Problem D: 统计元音字母的个数

Problem D: 统计元音字母的个数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 109  Solved: 83
[Submit] [Status] [Web Board] [Creator:]

Description

在英语中,A、E、I、O、U是元音字母(汉语拼音方案借用了英语的元音字母,以元音字母开始的音节叫做韵母) 
要求:统计一段短文中元音字母的个数 

Input

一段文字,包括各种字母、数字、标点等符号,以\n结尾,总长度不超过100 

Output

文中元音字母的个数

Sample Input Copy

one apple a day keep the doctor away.

On July 20, 1969, Neil Armstrong became the first human to step on the moon.

Sample Output Copy

13

19