Write a program that prints out an ASCII art figure. The size $$n$$ of the figure is the input to your program: it is an integer strictly between 0 and 100 (i.e. 0 and 100 are not included). The examples are some figures displayed for various sizes $$n$$. You must find the correct way to transform the figure to other sizes $$n$$.
A number $$n \in \mathbb{N}$$, where $$0 < n < 100$$.
Input:
1
Output:
***
* *
*** ***
* *
*** ***
* *
***
Input:
2
Output:
***
* *
*** ***
* *
*** ***
* *
*** ***
* *
*** ***
* *
***
Input:
3
Output:
***
* *
*** ***
* *
*** ***
* *
*** ***
* *
*** ***
* *
*** ***
* *
*** ***
* *
***