using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
var recordsCount = 100;
var count = 7;
var list = new List<int>();
for (int i = 0; i<= recordsCount; i++)
list.Add(i % count);
}
for (int i = 0; i< count; i++)
Console.WriteLine(list.FindAll(x => x==i).Count);