using System;
public class Program
{
public static void Main()
double b = 30000000000000001;
Console.WriteLine("With Variable: " + (b > 30000000000000000) );
Console.WriteLine("Without Variable: " + (30000000000000001 > 30000000000000000) );
}