eolymp
bolt
Try our new interface for solving problems
Problems

Template

Template

Given positive integer n. Print the image of size n * n, formed by the asterisk and space characters as shown in the example. Image 1.jpg

Input

One positive integer n (n100).

Output

Print the image n * n.

Time limit 1 second
Memory limit 128 MiB
Input example #1
5
Output example #1
* * *
 * * 
* * *
 * * 
* * *
Input example #2
6
Output example #2
* * * 
 * * *
* * * 
 * * *
* * * 
 * * *

Author Matviychuk Sergiy Volodymyrovych
Source "ABC programming"