using System;
public class Program
{
public static void Main()
int [,] points = new int[5,5];
points [4,2] = 20;
}