#include using namespace std; int main(){ int n,i,j; int m=1000000000; int t[m][m]; int min; cin >> n; vector a(n); for(int a_i = 0; a_i < n; a_i++){ cin >> a[a_i]; } // your code goes here for(i=0;i t[i][j]) { min = t[i][j]; } } } cout<