#include<bits/stdc++.h>
using namespace std;
int main(){
	int a[1001],n,ok;
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>a[n];
	}
	return 0;
}