namespace Basics_of_programming_part_2
static void Main(string[] args)
Console.WriteLine("How many columns?");
string LiczbaA = Console.ReadLine();
int Columns = Convert.ToInt32(LiczbaA);
Console.WriteLine("How many rows?");
string LiczbaB = Console.ReadLine();
int Rows = Convert.ToInt32(LiczbaB);
for (int i = 1; i <= Rows; i++)
for (int b = 1; b <= Columns; b++) ;