public static void Main()
a=Convert.ToDouble(Console.ReadLine());
b=Convert.ToDouble(Console.ReadLine());
c=Convert.ToDouble(Console.ReadLine());
d1= (-b + Math.Sqrt(Math.Pow(b, 2)-4*a*c))/2*a;
d2= (-b - Math.Sqrt(Math.Pow(b, 2)-4*a*c))/2*a;
Console.WriteLine("\nLa respuesta 1 es : {0}\nLa respuesta 2 es: {1}", d1, d2);