#include using namespace std; int main() { int n; cin>>n; multiset a; for(int i=0; i>t; a.insert(t); } while (a.size()>1) { auto i=begin(a); auto j=end(a); --j; int x=*i/2+*j; a.erase(i); a.erase(j); a.insert(x); } cout<<*begin(a)<