using System;
public class Program
{
public static void Main()
Console.Write("Masukkan jumlah elemen : ");
int total=int.Parse(Console.ReadLine());
int [] jumlah = new int [total];
for (int a=0;a<jumlah.Length;a++) {
jumlah [a] = a*a;
}
Console.WriteLine("Untuk nomer ke-{0} : {1}",(a),jumlah [a]);