public static void Main()
Console.WriteLine("Display the greater of two values:");
Console.WriteLine("Byte: the greater of 1 and 51 is"+Math.Max(1,51));
Console.WriteLine("Int32: the greater of -3 and 53 is"+Math.Max(1,51));
Console.WriteLine("Decimal: the greater of 7 and 57 is"+Math.Max(7,57));
Console.WriteLine("Display the lesser of two values:");
Console.WriteLine("Byte: the lesser of 1 and 51 is"+Math.Min(1,51));
Console.WriteLine("Int32: the lesser of -3 and 53 is"+Math.Min(1,51));
Console.WriteLine("Decimal: the lesser of 7 and 57 is"+Math.Min(7,57));