#include<iostream>
using namespace std;
int main()
{
int arr[]={2, 3, 4, 1, 6};
cout<< arr<<"," << &arr[0] <<"," << &arr ;
return 0;
}