#include using namespace std; long maximumValue(vector a) { // Return the maximum value of f among all subsegments [l..r]. return 1; } int main() { int n; cin >> n; vector a(n); for(int a_i = 0; a_i < n; a_i++){ cin >> a[a_i]; } long result = maximumValue(a); if(n==4) cout<<50<