
static void Main(string[] args)
{
Console.WriteLine(x().ToString());
}
static bool y()
{
return (x() == true);
}
static bool x()
{
return (y() == false);
}