#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int N, K; cin >> N >> K; vector A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } int res = 0; for (int bit = 0; bit < (1 << N); bit++) { int tot = 0; for (int i = 0; i < N; i++) { if ((bit >> i) & 1) tot += A[i]; } if (tot <= K) res = max(res, tot); } cout << res << '\n'; return 0; }