#include <bits/stdc++.h>
using namespace std;
string s;
int cnt[52 + 5];
int main() {
getline(cin, s);
for(int i = 0; i < s.size(); i++) {
if (s[i] >= 'a' && s[i] <= 'z')cnt[s[i] - 'a']++;
else if (s[i] >= 'A' && s[i] <= 'Z')cnt[s[i] - 'A' + 26]++;
}
for (int i = 0; i < 26; i++) {
if (cnt[i] == 1) {
if(i >= 0 && i <= 26)cout << char(i + 'a') << endl;
else cout << char(i + 'A') << endl;
return 0;
}
}
cout << "no" << endl;
return 0;
}