9961: ABC315 —— A - tcdr
[Creator : ]
Description
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`.
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`.
Input
The input is given from Standard Input in the following format:
```
$S$
```
```
$S$
```
Output
Print the answer.
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`.
- $S$ contains at least one character other than `a`, `e`, `i`, `o`, `u`.
Sample 1 Input
atcoder
Sample 1 Output
tcdr
For S= atcoder, remove the 1-st, 4-th, and 6-th characters to get tcdr.
Sample 2 Input
xyz
Sample 2 Output
xyz
Sample 3 Input
aaaabbbbcccc
Sample 3 Output
bbbbcccc