public static void Main()
Console.WriteLine("Enter two numbers.");
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
Console.WriteLine("The biggest number of {0} and {1} is {2}", a, b, Math.Max(a, b));
static void BiggestNumber()
Console.WriteLine("Enter two numbers.");
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
Console.WriteLine("The biggest number of {0} and {1} is {2}", a, b, biggest);