public static void Main()
int option = int.Parse(Console.ReadLine());
int [,] adjMatrix = new int[3,3];
for (int i= 0; i <=2; i++)
for (int j = 0; j <=2; j++)
if(i==j) adjMatrix[i, j] = 0;
else adjMatrix[i, j] = int.MaxValue;
int edge1 = Convert.ToInt32(Console.ReadLine());
int edge2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(adjMatrix[edge1,edge2]);
Console.WriteLine("1. Find lines");
Console.WriteLine("3. Delete lines");
Console.WriteLine("2. Add Lines");
Console.WriteLine("What would you like to do?");