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