#include<iostream>
#include<stdio.h>
#include<math.h>
#include<iomanip>
#include<string>
using namespace std;
int main()
{
string s;
getline(cin, s);
int i,j;
char p;
for ( i = 0; i < s.length(); i++)
{
p = s[i];
for ( j = i + 1; j < s.length(); j++)
{
if (p == s[j])
{
s[i] = '-1';
s[j] = '-1';
}
}
}
for (i = 0; i < s.length(); i++)
{
if (!isdigit(s[i]))
{
cout << s[i];
return 0;
}
}
cout << "no";
return 0;
}