#include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N,K; cin >> N >> K; vector A(N); for (int i=0;i> A[i]; sort(A.begin(),A.end()); reverse(A.begin(),A.end()); int ans=-100000,sum=0; for (int i=0;i