public static void Main()
int[] scores = new int[]{100,90,90,90,80,80,80,75,75,74,60,60};
int[] rank = new int[scores.Length];
for(int i = 1; i < rank.Length; i++)
if(scores[i] == scores[i-1]){
Console.WriteLine("Ranks:");
for(int i = 0; i < rank.Length; i++)
Console.WriteLine(rank[i]);