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());
int z = (y - 3) % x / (x- y);
Console.WriteLine("\nThe result of the expression '(x % y) > 5 & (9 / x < 3)'");
Console.WriteLine("With x = {0}, y = {1}", x,y);
Console.WriteLine("Is z = {0}", z);