using System;
public class Program
{
public static void Main()
int[,] date_ranges = {{-1, 5}, {5, 10}, {10, 20}, {20, 30}, {30, 60}, {60, 90}, {90, short.MaxValue}};
Console.WriteLine(date_ranges.Length);
}