using System;
public class Program
{
public static void Main()
Random r = new Random();
Console.WriteLine(r.Next(0, 10));
}