public static void Main()
Console.WriteLine("Hello World");
Console.Write("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 = ((3*x * x) % 5 > (y/2)*x);
Console.WriteLine("\nThe result of the expression '((x*y) % x + 9*(x+y))'");
Console.WriteLine("With x = {0}, y = {1}", x,y);
Console.WriteLine("Is z = {0}", z);