public static void Main()
Console.WriteLine("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 = (y - 3) % x / (x - y);
Console.WriteLine("the result of the expression '(x - y) % x / (x + y)'");
Console.WriteLine("With X = {0}, y = {1}", x,y);
Console.WriteLine("Is z = {0}", z);