#282. 字符串中间子串提取

    ID: 282 Type: Default 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>codingbatString-1gesp3字符串

字符串中间子串提取

Extract Middle Substring

Background

Congcong is learning string manipulation and encountered an interesting problem that requires extracting a specific part from a given string.

Problem Description

Given a string of odd length, return the string length 33 from its middle. For example, "Candy" yields "and". The string length will be at least 33.

Input Format

Input is given from standard input in the following format.

A string SS

Output Format

Output is printed to standard output in the following format.

The extracted middle substring of length 33

Sample

Candy
"and"
and
"and"
solving
"lvi"

Sample Explanation

For the input "Candy\