

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
小文字のアルファベットからなる文字列 が与えられます。 この文字列を 文字ごとに改行したときに、各行の先頭の文字を上から順番につなげて得られる文字列を出力してください。
制約
- は小文字のアルファベットのみからなる
- は整数
入力
入力は以下の形式で標準入力から与えられる。
出力
答えの文字列を 行に出力してください。
入力例 1Copy
abcdefgh 3
出力例 1Copy
adg
abcdefgh
を 文字ごとに改行すると、
abc
def
gh
となります。これらの行の先頭の文字を上から順に読むと adg
となります。
入力例 2Copy
lllll 1
出力例 2Copy
lllll
入力例 3Copy
souuundhound 2
出力例 3Copy
suudon
Score : points
Problem Statement
You are given a string consisting of lowercase English letters. We will write down this string, starting a new line after every letters. Print the string obtained by concatenating the letters at the beginnings of these lines from top to bottom.
Constraints
- consists of lowercase English letters.
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the desired string in one line.
Sample Input 1Copy
abcdefgh 3
Sample Output 1Copy
adg
When we write down abcdefgh
, starting a new line after every three letters, we get the following:
abc
def
gh
Concatenating the letters at the beginnings of these lines, we obtain adg
.
Sample Input 2Copy
lllll 1
Sample Output 2Copy
lllll
Sample Input 3Copy
souuundhound 2
Sample Output 3Copy
suudon