#include <iostream>
#include <stdlib.h>
void main()
{
bool b1 = 1 && 1 || 2 || -1 && 0;
std::cout << b1 <<std::endl;
system("pause");
}
#include <iostream>
#include <stdlib.h>
void main()
{
bool b1 = 1 && 1 || 2 || -1 && 0;
std::cout << b1 <<std::endl;
system("pause");
}