#include <stdio.h>
int main()
{
int x = 5, y = 10;
if (x < 10 && y > 5)
{
printf("x is less than 10 and y is greater than 5\n");
}
else
{
printf("x is not less than 10 or y is not greater than 5\n");
}
if (x == 5 || y == 8)
{
printf("x is equal to 5 or y is equal to 8\n");
}
else
{
printf("x is not equal to 5 and y is not equal to 8\n");
}
if (!(x == y))
{
printf("x is not equal to y\n");
}
else
{
printf("x is equal to y\n");
}
return 0;
}