public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine(" (" + a + " + " + b + " )" + " / " + c + " = " + "quotient:" + d);
Console.WriteLine(" (" + a + " + " + b + " )" + " / " + c + " = " + "remainder:" + e);
decimal min = decimal.MinValue;
decimal max = decimal.MaxValue;
Console.WriteLine("The range of decimal type is" + min + " to " + max);
double third = 1.0 / 3.0;
Console.WriteLine(third);