

Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 200 点
問題文
英小文字からなる文字列 s が与えられます。前から数えて奇数文字目だけ抜き出して作った文字列を出力してください。 ただし、文字列の先頭の文字を1文字目とします。
制約
- s の各文字は英小文字
- 1≤|s|≤10^5
入力
入力は以下の形式で標準入力から与えられる。
s
出力
前から数えて奇数文字目だけ抜き出して作った文字列を出力せよ。
入力例 1
atcoder
出力例 1
acdr
1 文字目の a
, 3 文字目の c
, 5 文字目の d
, 7 文字目の r
を取り出して acdr
となります。
入力例 2
aaaa
出力例 2
aa
入力例 3
z
出力例 3
z
入力例 4
fukuokayamaguchi
出力例 4
fkoaaauh
Score : 200 points
Problem Statement
You are given a string s consisting of lowercase English letters. Extract all the characters in the odd-indexed positions and print the string obtained by concatenating them. Here, the leftmost character is assigned the index 1.
Constraints
- Each character in s is a lowercase English letter.
- 1≤|s|≤10^5
Input
The input is given from Standard Input in the following format:
s
Output
Print the string obtained by concatenating all the characters in the odd-numbered positions.
Sample Input 1
atcoder
Sample Output 1
acdr
Extract the first character a
, the third character c
, the fifth character d
and the seventh character r
to obtain acdr
.
Sample Input 2
aaaa
Sample Output 2
aa
Sample Input 3
z
Sample Output 3
z
Sample Input 4
fukuokayamaguchi
Sample Output 4
fkoaaauh