using System;
public class Program
{
public static void Main()
int[] r = new int[1000];
var random = new Random();
for (int x = 0; x < 100000; x++)
double myRandom = 1 - Math.Abs(random.NextDouble() - random.NextDouble());
r[(int)(myRandom * 100)]++;
}
for (int x = 0; x < 100; x++)
Console.WriteLine(r[x]);