#include<iostream>
using namespace std;

int main() {

	int x[5];
	int *y = new int[5];

	cout << "&x : " << &x << endl;
	cout << "x : " <<  x << endl;

	cout << endl;

	cout << "&y : " << &y << endl;
	cout << "y : " <<  y << endl;

	return 0; 
}