#abc266a. [abc266_a]Middle Letter

[abc266_a]Middle Letter

Problem Statement

You are given an odd-length string SS consisting of lowercase English letters.

Print the central character of SS.

What is the central character? For an odd-length string TT, its central character is the fracT+12\\frac{|T|+1}{2}-th character from the beginning, where T|T| is the length of TT.

Constraints

  • SS is an odd-length string consisting of lowercase English letters.
  • The length of SS is between 11 and 9999 (inclusive).

Input

Input is given from Standard Input in the following format:

SS

Output

Print the answer.


Sample Input 1

atcoder

Sample Output 1

o

The central character of atcoder is o.


Sample Input 2

a

Sample Output 2

a