#731. 打印正方形

打印正方形

Background

Special for beginners, ^_^

Description

按要求,给定边长,打印一个正方形。

Format

Input

每行一个数n(2<=n<=100),表示正方形的边长

Output

按照样例格式输出正方形。

Samples

4
****
****
****
****

Limitation

1s, 1024KiB for each test case.