#include<iostream>
using namespace std;
int main(){
    int a,b,c,d;
    cin>>a;
    cout<<"Enter the arr size: "<<a<<endl;
    cin>>b;
    cin>>c;
    cin>>d;
    cout<<"the entered array elements: "<<b" "<<c" "<<d" "<<endl;
    return 0;
    
}