using System;
public class Program
{
public static void Main()
Console.WriteLine("---Start---");
/*
You have an array of numbers.
You have to give the range in which each number is the maximum element.
For Example, If array is 10, 50, 40, 30, 60 The output would be
10 [0, 0]
50 [0, 3]
40 [2, 3]
30 [3, 3]
60 [0, 4]
*/
int[] input = new int[] { 10, 50, 40, 30, 60 };
}