1463: 【Python】复制元音字母

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:57 Solved:43

Description

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

Input

一行字符串

Output

顺序输出其中的元音字母(aeiou)

Sample Input Copy

abcde

Sample Output Copy

ae

Source/Category