using System;
namespace Практическая_работа_7_Задание19
{
class Program
{
static void Main(string[] args)
{
// Ввод значения x
Console.Write("Введите значение x: ");
double x = Convert.ToDouble(Console.ReadLine());
// Вычисление по формуле
double y = 2 * Math.Log(x) - Math.Tan(x);
// Вывод результата
Console.WriteLine($"y = {y}");
Console.ReadKey();
}
}
}