using System;
public class Program
{
public static void Main()
int[] arr = new int[4];
arr[2] = 9;
Console.WriteLine(string.Join("",arr));
}