1214: C语言8.19

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:2

Description

写一个函数,将一个字符串中的元音字母复制到另一个字符串,然后在主函数中输出。

Input

只有一行,有一个包含空格的字符串。保证字符串的长度不超过100。

Output

将读入的字符串中的元音字母复制出的字符串。
请注意行尾输出换行。

Sample Input Copy

THIS is not a program.

Sample Output Copy

Iioaoa

Source/Category