#include <iostream>

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