#277. withouEnd2

withouEnd2

Background

Description

Given a string, return a version without both the first and last char of the string. The string may be any length, including 0.

Format

Input

Output

Samples

Hello
"ell"
abc
"b"
ab
""

Limitation

1s, 1024KiB for each test case.