1677: 【c09】输出数字3█

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:13 Solved:6

Description

请你观察下面图案,给定一个正整数n,用*画出一个数字“3”。

当n=4,画出的图案为:

****
   *
   *
****
   *
   *
****

Input

输入一个正整数n(3≤n≤10)。

Output

输出符合题目描述的图案,同一行的相邻字符之间没有空格。

Sample Input Copy

5

Sample Output Copy

*****
    *
    *
    *
*****
    *
    *
    *
*****