시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB32825423577.303%

문제

A Perfect Shuffle of a deck of cards is executed by dividing the deck exactly in half, and then alternating cards from the two halves, starting with the top half. 

Given a deck of cards, perform a Perfect Shuffle. If there is an odd number of cards, give the top half split one more card than the bottom half.

입력

There will be several test cases in the input. Each test case will begin with a line with a single integer n (1≤n≤1,000), indicating the number of cards. On each of the next n lines will be a string from 1 to 80 characters in length, which is the name of a card. It will contain only capital letters and dashes. Within a test case, all card names will be unique. Input will end with a line with a single 0.

출력

For each test case, output n lines, consisting of the deck after a perfect shuffle. Output no extra spaces. Do not print a blank line between answers.

예제 입력 1

4
ACE
KING
QUEEN
JACK
5
SKIP
DRAW-TWO
REVERSE
WILD
WILD-DRAW-FOUR
0

예제 출력 1

ACE
QUEEN
KING
JACK
SKIP
WILD
DRAW-TWO
WILD-DRAW-FOUR
REVERSE