using System;
/// <summary>
/// Creates a simple class
/// </summary>
public class App
{
// Use the [Ready] attribute to automaically
// run this method when the page is ready.
public static void Main()
float n = 0.99f;
float x = n*100;
float y = n*99.999999f;
Console.WriteLine(x>y);
double nD = 0.99;
double xD = nD*100;
double yD = nD*99.999999;
Console.WriteLine(xD>yD);
}