using System;
public class Program
{
public static void Main()
int[] X = new int[5];// {3, 6, 9, 12, 15 };
int count = 0;
for (; count <5; count++)
Console.WriteLine("\nEnter a number. ");
X[count]= Int32.Parse(Console.ReadLine());// OR X[count] = Convert.Toint32(Console.Readline());
}
Console.WriteLine("In");