A - Diagonal String 解説 /

実行時間制限: 2 sec / メモリ制限: 256 MB

配点 : 100

問題文

33 列の正方形状のマス目があり、各マスには英小文字が書かれています。 上から i 行目、左から j 列目のマスに書かれた文字は、c_{ij} です。

マス目の左上と右下を結ぶような対角線上のマス目に書かれた文字を、左上から順に読んでできる 3 文字の文字列を出力してください。

制約

  • 入力は英小文字からなる

入力

入力は以下の形式で標準入力から与えられる。

c_{11}c_{12}c_{13}
c_{21}c_{22}c_{23}
c_{31}c_{32}c_{33}

出力

マス目の左上と右下を結ぶような対角線上のマス目に書かれた文字を、左上から順に読んでできる 3 文字の文字列を出力せよ。


入力例 1

ant
obe
rec

出力例 1

abc

対角線上のマス目に書かれた文字は、左上から順に a,b,c です。これらを順に読んでできる abc を出力します。


入力例 2

edu
cat
ion

出力例 2

ean

Score : 100 points

Problem Statement

We have a 3×3 square grid, where each square contains a lowercase English letters. The letter in the square at the i-th row from the top and j-th column from the left is c_{ij}.

Print the string of length 3 that can be obtained by concatenating the letters in the squares on the diagonal connecting the top-left and bottom-right corner of the grid, from the top-left to bottom-right.

Constraints

  • Input consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

c_{11}c_{12}c_{13}
c_{21}c_{22}c_{23}
c_{31}c_{32}c_{33}

Output

Print the string of length 3 that can be obtained by concatenating the letters on the diagonal connecting the top-left and bottom-right corner of the grid, from the top-left to bottom-right.


Sample Input 1

ant
obe
rec

Sample Output 1

abc

The letters in the squares on the diagonal connecting the top-left and bottom-right corner of the grid are a, b and c from top-right to bottom-left. Concatenate these letters and print abc.


Sample Input 2

edu
cat
ion

Sample Output 2

ean