using System;
class Program
{
static void Main()
{
double a = 3.56;
double b = 3.89;
double c = 7.45;
Console.WriteLine("a == b: "+((a+b)-c < 0.000001));
Console.WriteLine(a==b); // it does not work
}
}