public static void Main()
Console.WriteLine("Hello World");
TestInput("2.000000000000");
TestInput("2.0000000000001");
static void TestInput(string text)
a = Convert.ToDouble(text);
Console.WriteLine("input {0} is an integer", text);
Console.WriteLine("input {0} is not an integer", text);