1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <iostream>

using namespace std;

int main() {
    long n, a, evenSum = 0, oddSum = 0, oddCount = 0, minOdd = 999, res;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a;
        if (a % 2 == 0) {
            evenSum += a;
        } else {
            oddSum += a;
            oddCount++;
            if (a < minOdd) {
                minOdd = a;
            }
        }
    }
    if (oddCount % 2 == 1 && oddCount > 0) {
        oddSum -= minOdd;
    }
    res = evenSum + oddSum;
    if (res != 0) {
        cout << res << endl;
    } else {
        cout << "NIESTETY" << endl;
    }
    return 0;
}