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
#include<iostream>
using namespace std;
int main(){
    ios_base::sync_with_stdio(0);
    int n;
    cin>>n;
    int min=999999, wy=0,pom;
    
    for (int i=0; i<n; i++)
    {
        cin>>pom;
        if (pom%2==1 && min>pom)
            min=pom;
        wy+=pom;
    }
    if (n==1 && wy%2==1)
    {
        cout<<"NIESTETY";
        return 0;
    }
    if (wy%2==1)
        wy-=min;
    cout<<wy;
    return 0;
}