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
*
* *
* *
* *
*