#include <stdio.h>
int main()
{
int n,p,i=1,s[1001];
scanf("%d",&n);
while(n!=0)
if((n%10)%2==0)
s[i]=n%10;
i++;
}
n=n/10;
if(i!=1)
for(p=i-1;p>0;p--)
printf("%d",s[p]);
else printf("Nu Exista");
return 0;