public static void Main()
Console.WriteLine("Insert the value of the operator 1 good items");
int G1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert the value of the operator 1 bad items");
int G1B = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert the value of the operator 2 good items");
var H1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert the value of the operator 2 Bad items");
int H1B = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert the value of the operator 3 good items");
var J1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Insert the value of the operator 3 bad items");
int J1B = Convert.ToInt32(Console.ReadLine());
var A = G1 >=10 || G1B>=2;
var A2 = H1 >=15 || H1B>=3;
var A3 = J1B >= 20 || J1B>=5;
Console.WriteLine("Alert 1 status = {0}",A);
Console.WriteLine("Alert 1 status = {0}",A2);
Console.WriteLine("Alert 1 status = {0}",A3);
Console.WriteLine("\n General Alert status = {0}",A4);