Problem9506--ABC344 —— A - Spoiler

9506: ABC344 —— A - Spoiler

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

Description

You are given a string $S$ consisting of lowercase English letters and `|`. $S$ is guaranteed to contain exactly two `|`s.

Remove the characters between the two `|`s, including the `|`s themselves, and print the resulting string.

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 $2$ and $100$, inclusive, consisting of lowercase English letters and `|`.
-   $S$ contains exactly two `|`s.

Sample 1 Input

atcoder|beginner|contest

Sample 1 Output

atcodercontest
Remove all the characters between the two |s and print the result.

Sample 2 Input

|spoiler|

Sample 3 Input

||xyz

Sample 3 Output

xyz

Source/Category