#include <iostream>

using namespace std;
int main()
{
	int c = 105;
	int *y;
	
	cout << c << endl;
	cout << &c << endl;
	cout << &y << endl;
	
	y = &c;
	cout << y << endl;
	cout << *y;
	return 0;
}
