public static void Main()
bool cond1 = (x > 1 && x > y);
Console.WriteLine("cond1 = {0}, z = {1}", cond1, z);
bool cond2 = (x > 1 || x > y);
Console.WriteLine("cond2 = {0}, w = {1}", cond2, w);
Console.WriteLine("Enter the first number");
num1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the second number");
num2 = Convert.ToInt32(Console.ReadLine());
if (num1 > 255 | num2 > 255)
Console.WriteLine("These numbers are too big!");
Console.WriteLine("Both numbers are less than or equal to 255");