103150: [Atcoder]ABC315 A - tcdr

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:6 Solved:0

Description

Score : $100$ points

Problem Statement

You are given a string $S$ consisting of lowercase English letters.
Remove all occurrences of a, e, i, o, u from $S$ and print the resulting string.
$S$ contains at least one character other than a, e, i, o, u.

Constraints

  • $S$ is a string of length between $1$ and $100$, inclusive, consisting of lowercase English letters.
  • $S$ contains at least one character other than a, e, i, o, u.

Input

The input is given from Standard Input in the following format:

$S$

Output

Print the answer.


Sample Input 1

atcoder

Sample Output 1

tcdr

For $S =$ atcoder, remove the $1$-st, $4$-th, and $6$-th characters to get tcdr.


Sample Input 2

xyz

Sample Output 2

xyz

Sample Input 3

aaaabbbbcccc

Sample Output 3

bbbbcccc

Output

分数:100分

问题描述

给你一个由小写英文字母组成的字符串$S$。

移除$S$中所有的aeiou,然后打印结果字符串。

$S$中至少有一个字符不是aeiou

约束

  • $S$是一个长度在$1$到$100$之间的字符串,由小写英文字母组成。
  • $S$中至少有一个字符不是aeiou

输入

输入从标准输入按以下格式给出:

$S$

输出

打印答案。


样例输入1

atcoder

样例输出1

tcdr

对于$S=$ atcoder,移除第1个、第4个和第6个字符得到tcdr


样例输入2

xyz

样例输出2

xyz

样例输入3

aaaabbbbcccc

样例输出3

bbbbcccc

HINT

去掉字符串种的a, e, i, o, u

加入题单

算法标签: