using System;
using System.Collections.Generic;
public class Program
{
public static List<int> UniqueIntegersSumUpToZero(int n) {
List<int> result = new List<int>(n);
for (int i = 0; i < n; i++) {
result.Add(2 * i - n + 1);
}
return result;
}
public static void Main(string[] args)
{
int n = 6;
List<int> result = UniqueIntegersSumUpToZero(n);
foreach (int val in result) {
Console.Write(val + " ");
}
}
}
/*
run:
-5 -3 -1 1 3 5
*/