public static void Main()
int[] sales = new int[5];
bool loopConditioner = true;
while (loopConditioner == true) {
Console.WriteLine("Enter year number: ");
string yearString = Console.ReadLine();
int yearIndex = Convert.ToInt16(yearString) - 1;
if (sales[yearIndex] == 0) {
Console.WriteLine("Enter Profit: ");
sales[yearIndex] = (int) Convert.ToInt64(Console.ReadLine());
Console.WriteLine(sales[yearIndex]);