using System;
public class Program
{
public static void Main()
var a = (0.1+0.2) - 0.3;
Console.WriteLine("a should be 0 but it is not, the value is = "+a);
}