#include <iostream>
using namespace std;
int main()
{unsigned int x,copx,maxi=1;
bool ok,da=1;
while (da==1)
{cin>>x;
if (x==0)
da=0;
else
{ok=1;
copx=x;
while (copx>0)
{if (ok==1)
if (copx%10%2==1)
ok=0;
copx=copx/10;}
if (ok==1)
if (x>maxi)
maxi=x;}}
if (ok==1)
cout<<maxi<<endl;
else
cout<<"Nu exista"<<endl;
return 0;}