using System;
using System.Xml;
using HtmlAgilityPack;
public class Program
{
public static void Main()
double x = 3.65, y = 0.05, z = 3.7;
Console.WriteLine((x + y) == z);
decimal x1 = 3.65M, y1 = 0.05M, z1 = 3.7M;
Console.WriteLine((x1 + y1) == z1);
}