public static void Main()
Console.WriteLine("עבור המשוואה הריבועית הכנס את הערכים של a, b, c");
Console.WriteLine("הכנס את ערך a:");
a = int.Parse(Console.ReadLine());
Console.WriteLine("הכנס את ערך b:");
b = int.Parse(Console.ReadLine());
Console.WriteLine("הכנס את ערךc:");
c = int.Parse(Console.ReadLine());
x1=(-b+(Math.Sqrt(b*b-4*a*c)))/2*a;
x2=(-b-(Math.Sqrt(b*b-4*a*c)))/2*a;
Console.WriteLine("x1="+" "+x1);
Console.WriteLine("x2="+" "+x2);