public static void Main()
int[] scores = new int[10];
for (int x=0; x<scores.Length; x++)
string strX = Console.ReadLine();
int xScore = Convert.ToInt32(strX);
Console.WriteLine("The Scores Are: ");
for(int x = 0; x<scores.Length; x++)
Console.Write(scores[x]);