#include <iostream>
using namespace std;

int main() {
	// your code goes here
	
	int value = 5;
	
	int *a = &value;
	
	cout << &value << endl;
	
	cout << &a << endl;
	
	cout << *&a << endl;
	
	return 0;
}