#include <iostream>
using namespace std;
 
int main() {
	// your code goes here
int a[10] = {1,2,3,4,5,6,7,8,9,10};
	
	cout<<a[0]<<endl;
	cout<<a<<endl;
	cout<<&(a[0])<<endl;
	cout<<*(a+0);
}