public static void Main(string[] args)
Console.WriteLine ("What is a?");
int a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine ("What is b?");
int b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine ("What is c?");
int c = Convert.ToInt32(Console.ReadLine());
double discriminant = ((Math.Pow(b, 2) - 4 * a * c));
Console.WriteLine ("No solutions possible");
Console.WriteLine ("Discriminant less than 0");
double answerOne = (-b + Math.Sqrt((Math.Pow(b, 2) - 4 * a * c)) / (2 * a));
double answerTwo = (-b - Math.Sqrt((Math.Pow(b, 2) - 4 * a * c)) / (2 * a));
Console.WriteLine ("The answer is " + answerOne);
Console.WriteLine ("The answer is " + answerTwo);