#216. noX

noX

Background

Description

Given a string, compute recursively a new string where all the 'x' chars have been removed.

Format

Input

Output

Samples

xaxb
"ab"
abc
"abc"
xx
""

Limitation

1s, 1024KiB for each test case.