using System;
public class Program
{
public static void Main()
int x= 4;
bool a, b, c, d;
a = x >=1 && x<=5;
b = !(x>=1 || x<=5);
c = !(x>=1 || x>=5);
d = x>=1 && x<= 5;
Console.WriteLine(a+" "+b+" "+c+" "+d);
}