using System;
using System.Math;
class Program
{
static void Main(string[] args)
{
if (args.Length != 2)
{
Console.WriteLine("Использование: program.exe x y");
return;
}
int x = int.Parse(args[0]);
int y = int.Parse(args[1]);
int smaller = Math.Min(x, y);
double result = Math.Sqrt(smaller);
Console.WriteLine($"Корень квадратный из {smaller}: {result}");
}
}
параметра - числа x и y. Из меньшего извлечь корень квадратный. Вывести
результат на экран.