using System;
public class Program
{
public static void Main()
int[] niz = {13840, 13940
,14012
,14092
,14144
,14220
,14352
,14476
,14976
};
for (int i = 1; i< niz.Length; i++){
Console.WriteLine((niz[i] - niz[i - 1]));
//Console.WriteLine(niz.ToString());
//Console.WriteLine(100f % 32);
//Console.WriteLine(96f % 32);
}