using System;
namespace JaggedArray
{
public class Program
public static void Main()
int[][] jaggedArray =
new int[] {3, 4, 5, 6, 6},
new int[] {2, 4, 5},
new int[] {3, 4, 6, 7}
};
}