public static void Main()
Console.Write("Set the value of x: ");
int x = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Set the value of y: ");
int y = Convert.ToInt32(Console.ReadLine());
z = (x - y) * 5 / ( x + y ) - ( y % x);
Console.WriteLine("The result of the expression z = (x - y) * 5 / ( x + y ) - ( y % x);");
Console.WriteLine("With values of x = {0}, y = {1}", x, y);
Console.WriteLine("Is z = {0}",z);