#P232. 练38.3 空心菱形

练38.3 空心菱形

Description

Input an integer n and output a hollow diamond, where each edge consists of n asterisks (*).

Input Format

A single line containing an integer n (1 < n < 20).

Output Format

Output a hollow diamond, where each edge consists of n asterisks.

Sample

3
  *
 * *
*   *
 * *
  *