public static void Main()
int[][] matrix = new int[][] { new int[]{ 1, 5, 9}, new int[]{ 10, 11, 13}, new int[]{12, 13, 15} };
Console.WriteLine(matrix.GetLength(0));
Console.WriteLine(matrix[0].Length);
Console.WriteLine(ClimbStairs(7));
static int ClimbStairs(int n) {