using System;
public class Program
{
public static void Main()
const int TABLESIZE = 1000;
int [] scores = new int [TABLESIZE]; //basically int TABLE scores = new int TABLE;
int i;
for (i = 1 ; i < TABLESIZE ; i++)
scores[i] = i;
Console.WriteLine(scores[i]);
}