using System;
public class Program
{
public static void Main()
int x=5,y=10;
bool z=true&&(x>y);
Console.WriteLine("z={0}",z);
}