#include <iostream>
using namespace std;

int main()
{
	short numbers[]={10,20,30,40,50};
	short *numptr=numbers;
	
	cout<<"The third element of the array is ";
	cout<<*(numptr+2)<<endl;
	
	return 0;
}
