using System;
public class Program
{
public static void Main()
int[] n = { 6, 8, 9, 2};
for(int i = 0;i <n.Length;i++){
Console.Write(n[i]);
}