#include <iostream>
using namespace std;

int main() {
	int x = 123;
	int *p = bitand x;
	
	cout << *p << endl;
	
	return 0;
}