public static void Main()
Console.WriteLine("Set the value of x: ");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Set the value of y: ");
int y = Convert.ToInt32(Console.ReadLine());
int z = ( x - y ) * 5 / ( x + 4 ) - ( y % x );
Console.WriteLine("The 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);