#include <iostream>
using namespace std;
int main ()

{
	bool b;
	int x, y = 7;
	b = y;
	x = b;
	
	cout << "The value of x is " << x << endl;
	cout <<  "The value of b is " << b << endl;
	return 0;
}
