public static void Main()
Console.WriteLine("Production line");
Console.WriteLine("How many good items has operator 1?");
int O1G = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many bad items has operator 1?");
int O1B = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many good items has operator 2?");
int O2G = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many bad items has operator 2?");
int O2B = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many good items has operator 3?");
int O3G = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How many good items has operator 3?");
int O3B = Convert.ToInt32(Console.ReadLine());
z1 = O1G <= 10 | O1B >= 2;
z2 = O2G <= 15 | O2B >= 3;
z3 = O3G <= 20 | O3B >= 5;
Console.WriteLine("Alerts in the operators are-> \nAlert Status 1: {0} \nAlert Status 2: {1} \nAlert Status 3: {2} \nGlobal Alert: {3}", z1, z2, z3, zt);