#include <iostream>
using namespace std;
 
int main() {
	// your code goes here
int a[10];
	
	cout<<a<<endl;
	cout<<*(a+1);
}