#abc315a. A - tcdr
A - tcdr
Score : points
问题描述
你将得到一个由小写英文字母组成的字符串 。
从 中移除所有出现的 a
、e
、i
、o
、u
,并打印出处理后的字符串。
至少包含一个不是 a
、e
、i
、o
、u
的字符。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given a string consisting of lowercase English letters.
Remove all occurrences of a
, e
, i
, o
, u
from and print the resulting string.
contains at least one character other than a
, e
, i
, o
, u
.
Constraints
- is a string of length between and , inclusive, consisting of lowercase English letters.
- contains at least one character other than
a
,e
,i
,o
,u
.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
Sample Input 1
atcoder
Sample Output 1
tcdr
For atcoder
, remove the -st, -th, and -th characters to get tcdr
.
Sample Input 2
xyz
Sample Output 2
xyz
Sample Input 3
aaaabbbbcccc
Sample Output 3
bbbbcccc
update @ 2024/3/10 09:00:06