#include using namespace std ; int main() { bool b1, b2 ; int x = 5, y = 10; b1 = x < y; b2 = y == x; cout << "b1 is " << b1 << endl; cout << "b2 is " << b2 << endl; //We need to use boolalpha to show true or false. cout << boolalpha << "b1 is " << b1 << endl; cout << "b2 is " << b2 << endl; bool b3 ; b3 = 10 ; cout << b3 << endl ; return(0) ; }