using System;
public class Program
{
public static void Main()
bool bln = (13<2) || !(10==10) || !(10==10) ? false : true;
Console.WriteLine(bln);
}