using System;
public class Program
{
public static void Main()
Random random = new Random();
double intress = random.NextDouble() * (3.0 - 0.5) + 0.5;
Console.WriteLine(intress);
}