using System;
public class Program
{
public static void Main()
// Inspired by our friends @https://www.geeksforgeeks.org/
int x = 3;
int y = 7;
// A typical use of '&&'
if (y > 1 && y > x)
Console.WriteLine("y is greater than 1 AND y\n");
// A typical use of '&'
int z = x & y;
Console.WriteLine("z = {0}", z);
}