public static double GetMaxLength(double width, double height)
result = Math.Max(height / 2, width / 3);
public static void Main()
Console.WriteLine("UniLecs");
Console.WriteLine(string.Format("Answer = {0}", GetMaxLength(210, 297).ToString("0.00")));
Console.WriteLine(string.Format("Answer = {0}", GetMaxLength(250, 100).ToString("0.00")));