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