using System;
public class Program
{
public static void Main()
/*
3.
A character and a value are passed to your method.
Method prints out a filled square.
E.g.
If value is 5 and character is '*', method prints out
*****
*/
String temp = Console.ReadLine();
int luku = Convert.ToInt16(temp);
int n = luku;
int p = n;
for (int i = 0; i < n; i++) // näin monta riviä tulee
for (int k = 0; k < p; k++) // tulostaa "="-merkkejä
Console.Write(luku);
Console.WriteLine("");
}