using System.Collections;
using System.Collections.Generic;
public static void Main()
var l1 = new List<int>(){1,2,3};
var l2 = new List<int>(){1,2,3,4,5,6,7,8};
var l3 = l1.Take(5).ToList();
var l4 = l2.Take(5).ToList();
Console.WriteLine($"Size l3: {l3.Count}");
Console.WriteLine($"Size l4: {l4.Count}");