using System;
public class Program
{
public static void Main()
int i=0;
while(i++<10)
Random rand= new Random();
Console.WriteLine(rand.Next(6));
}