using System;
public class Program
{
public static void Main()
//true and true and false and true or false and true or false
bool x = true && true && false && true || false && true || false;
Console.WriteLine(x.ToString());
}