#269. firstHalf

firstHalf

Background

Description

Given a string of even length, return the first half. So the string "WooHoo" yields "Woo".

Format

Input

Output

Samples

WooHoo
"Woo"
HelloThere
"Hello"
abcdef
"abc"

Limitation

1s, 1024KiB for each test case.