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