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

문제

The Trade Federation is too cheap to purchase practice targets for testing the battle droid weapon system. Your job is to write a program to print targets given an input that specifies the size of the target. The basic shape of a target is a square with an X through the middle. The following is a target of size 7.

|-----| The middle characters are a dash (i.e., minus sign)
|*   *|
| * * |
|  *  |
| * * |
|*   *|
|-----|

입력

An odd positive integer greater than 1.

출력

Target of the appropriate size.

예제 입력 1

9

예제 출력 1

|-------|
|*     *|
| *   * |
|  * *  |
|   *   |
|  * *  |
| *   * |
|*     *|
|-------|