public static void Main()
Console.Write("Set the value of x: ");
int x = Convert.ToInt32(Console.ReadLine());
Console.Write("Set the value of y: ");
int y = Convert.ToInt32(Console.ReadLine());
z = ((9 * x) > (3 * y)) | ((5 * y ) < (9 * x)) & ((x % y) > 1);
Console.WriteLine("The result of the expression z = ((9 * x) > (3 * y)) | ((5 * y ) < (9 * x)) & ((x % y) > 1) ");
Console.WriteLine("Whit the values of x = {0} y ={0}", z, y);
Console.WriteLine("Is z = {0}", z);