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
31
32
33
34
35
36
//
//  main.cpp
//  kieszonkowe
//
//  Created by Marcin Wierzbicki on 28.09.2015.
//

#include <cstdio>

using namespace std;

int main() {
    int n, tempp, minn=1001, suma=0;
    scanf("%d",&n);
    for (int i=0; i<n; i++) {
        scanf("%d",&tempp);
        suma=suma+tempp;
        if (tempp%2==1 && tempp<minn) {
            minn=tempp;
        }
    }
    if (suma%2==1) {
        if (n>1) {
            printf("%d",suma-minn);
            return 0;
        }
        else {
            printf("NIESTETY");
            return 0;
        }
    }
    else {
        printf("%d",suma);
        return 0;
    }
}