public static void Main()
Console.WriteLine("Nhập vào một số x bất kỳ: ");
float x = float.Parse(Console.ReadLine());
Console.WriteLine("Nhập vào một số y bất kỳ: ");
float y = float.Parse(Console.ReadLine());
float c = 4 * x * x * y - 2 * x * y;
float d = 6 * x * y * y -13;
Console.WriteLine("Kết quả của đa thức cần tìm là: " + ketqua);