using System;
public class Program
{
/*
Write a program to print the given character in below format
x x x x x x x
x x x x x x
x x x x x
x x x x
x x x
x x
x
The input for this program should number of maximum number of characters in a row and character to print.
*/
public static void Main()
print("A", 5);
}
public static void print(string c, int max)
Console.WriteLine("Write your logic here");