打印平行四边形


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

打印平行四边形。

Input

输入不超过50个的正整数n(1<n<30)。

Output

输出以n为边长的平行四边形。 每个四边形之间空1行。

Sample

Input

5 2

Output

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

**
 **

Comments

There are no comments at the moment.