using System;
public class Program
{
public static void Main()
float a = 0.1f;
float b = 0.2f;
Console.WriteLine(a + b == 0.3f);
}