#include<iostream>

using namespace std;

int main(){

int pole[100];

pole[2]=5;
pole[-1]=10;

cout<<pole[-1]<<endl;





}
