#include <iostream>
#include <cstring>
using namespace std;
int cnt[26];
int main(void)
{
string str;
cin >> str;
for (int i = 0; i < str.size(); i++) {
cnt[str[i] - 'a']++;
}
for (int i = 0; i < str.size(); i++) {
if (cnt[str[i] - 'a'] == 1) {
printf("%c\n", str[i]);
return 0;
}
}
puts("no");
// for (int i = 0; i < 26; i++) {
// if (cnt[i] == 1) {
// printf("%c\n", 'a' + i);
// break;
// }
// }
return 0;
}