Problem9961--ABC315 —— A - tcdr

9961: ABC315 —— A - tcdr

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

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`.

Input

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

```
$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`.

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

Source/Category