#256. stringX

stringX

Background

Description

Given a string, return a version where all the "x" have been removed. Except an "x" at the very start or end should not be removed.

Format

Input

Output

Samples

xxHxix
"xHix"
abxxxcd
"abcd"
xabxxxcdx
"xabcdx"

Limitation

1s, 1024KiB for each test case.