#include <iostream>
#include <cstring>
using namespace std; // consider removing this line in serious projects

int main() {

int *a = new int[100];
a[0] = 2;
a[1] = 6;
a[2] = 9;
a[3] = 1;
a[4] = -2;
//int *b = a;
int *b = new int[100];
 memcpy(b, a, 100) ;
 
cout << dec << &a << endl;
cout << dec << &b << endl <<endl;
 
cout << &a << endl;
cout << &b << endl;



	
	
	
	

	return 0;
}