#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while(cin >> s){
vector<int> cnt(26,0);
for(auto ch:s){
++cnt[ch - 'a'];
if(1 == cnt[ch - 'a'])
cout<<ch;
}
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
while(cin >> s){
vector<int> cnt(26,0);
for(auto ch:s){
++cnt[ch - 'a'];
if(1 == cnt[ch - 'a'])
cout<<ch;
}
}
return 0;
}