using System;
public class Program
{
public static void Main()
double x = 3.65, y = 0.05, z = 3.7;
Console.WriteLine((x + y) == z); // false
}