#include <iostream>
#include <memory>

int main() {
	int a = 123;
	int& b = a;
	std::cout << std::addressof(b) << std::endl;
	return 0;
}