using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
List<int> test = new List<int>();
test.Insert(0, -3);
test.Insert(1, 2);
test.Insert(2, 4);
Console.WriteLine(string.Join(",", test));
}