using System;
public class Program
{
public static void Main()
int[]tab = new int[] {5, 8, 3, 2, 6, 4};
int index = 0;
while( index < tab.Length )
Console.Write( tab[index] + " " );
index++;
}