public static void Main()
static void Main(string[] args)
Console.Write("Введите значение x = ");
x = double.Parse(Console.ReadLine());
Console.Write("Введите значение y = ");
y = double.Parse(Console.ReadLine());
Console.WriteLine("x = {0}, y = {1}", x, y);