#include <iostream>
#include <algorithm>
#include <vector>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using std::sort;
vector <short> nieparzyste;
struct compare
{
bool operator() (int i, int j) { return (i < j);}
} compareObj;
int main()
{
int n, suma = 0;
short buf;
cin >> n;
for(int i = 0; i < n; ++i)
{
cin >> buf;
suma += buf;
if(buf % 2 != 0) nieparzyste.push_back(buf);
}
if(suma % 2 == 0) cout << suma;
else
{
sort(nieparzyste.begin(), nieparzyste.end(), compareObj);
while(nieparzyste.size() > 0)
{
static int iter = 0;
suma -= nieparzyste[iter];
if(suma % 2 == 0 && suma > 0) {cout << suma; break;}
if(suma <= 0) {cout << "NIESTETY"; break;}
++iter;
}
}
return 0;
}