#include <iostream>
using namespace std;


int main() {
     int arr[50];
     arr= {1,2,3,4};
     cout<<arr[1];
return 0;
}