	#include <iostream>
	
	int main() {
		int b05 = 10; int b06 = 5;
		b05 |= b06;
		std::cout << "b05 " << b05 << ", b06 " << b06 << "\n";
	}