using System;
public class Program
{
public static void Main()
int[] a = new int[10];
for (int i=0; i<10; i++)
a[i]=i;
Console.Write(a[i] +" ");
}