using System; class Program { public static void Main() { Random random = new Random(); double a = random.NextDouble(); Console.WriteLine(a); } }