using System.Collections.Generic;
using System.Text.RegularExpressions;
return this.D = this.b * this.b - 4 * this.a * this.c;
return X1 = ( - this.b + this.r )/( 2 * this.a );
X2 = ( - this.b - this.r )/( 2 * this.a );
public static void Main(string[] args)
Equation E = new Equation();
Console.WriteLine("This equation is impossible to solve");
Equation X1 = new Equation();
Equation X2 = new Equation();
Console.WriteLine("Stage3");