using System;
public class Program
{
public static void Main()
Random r = new Random();
double d = r.NextDouble();
string s = d.ToString();
Console.WriteLine(d == double.Parse(s));
}