namespace Change_on_specific_possitions
public static void Main(string[] args)
Console.WriteLine("Enter some number,which can't devide on 2 and bigger than 3(5,7,9 etc.)");
int cols = int.Parse(Console.ReadLine());
Console.Write(new string(' ', cols));
Console.Write(copyright);
for (int i = cols - 1; i > 0; i--)
Console.Write(new string(' ', i));
Console.Write(copyright);
Console.Write(new string(' ', count));
Console.Write(copyright);
Console.Write(new string(' ', i));
for (int j = 1; j <= cols; j++)
Console.Write(" {0}", copyright);
Console.WriteLine("Cool Isn't it?");