public static void Main(string [] args){
Console.WriteLine("ax^2+bx+c");
a = Convert.ToInt32(Console.ReadLine());
b = Convert.ToInt32(Console.ReadLine());
c = Convert.ToInt32(Console.ReadLine());
Console.Write("D < 0, нет решения");
Console.WriteLine("D = 0, один корень");
Console.Write("Ответ: ");
Console.WriteLine("D > 0, два корня");
double x1 = ((-b-(Math.Sqrt(d)))/(2*a));
double x2 = ((-b+(Math.Sqrt(d)))/(2*a));
Console.Write("Первый корень: ");
Console.Write("Второй корень: ");
Console.Write("Неправильно пишешь");