using System;
public class Program
{
public static void Main()
String str = "";
int i = 0;
while(i<4)
str = str + "*";
Console.WriteLine(str);
i++;
}