using System;
using System.Collections.Generic;
using System.Linq;
public class Program
{
public static void Main()
{
IEnumerable<int> numbers = Enumerable.Range(4, 3).Select(x => x * x);;
foreach (int n in numbers) {
Console.WriteLine(n);
}
}
}
/*
run:
16
25
36
*/