using System;
public class Program
{
public static void Main()
{ int verdad = 101;
int mentira = 101;
Boolean verdadero = false;
Boolean falso = true;
int respuesta = (verdadero ? (5 & mentira) : ((falso?8:10) | 3%3));
Console.WriteLine(respuesta );
}