#include <iostream>

using namespace std;

int main(){
	int *ptr1 = new int;
	int *ptr2 = new int;
	*ptr1 = 100;
	*ptr2 = 200;
	
	*ptr2 =*ptr1;
	
	int myArray[3]= {101,102,103};
	int *ptr1 = myArray;
	
	for (int i=0;i<3; ++i){
		cout << "The first pointer is: " << *ptr1 << endl;
	}
	
	    cout <<"The second pointer is: " << *ptr2<<endl;
	    
return 0;
}
