#include <iostream>
// write your code here......
#include <set>
using namespace std;

int main() {

    string str;
    getline(cin,str);

    // write your code here......
    set<char> s;
    for(int i = 0; str[i] != '\0'; i++){
        s.insert(str[i]);
    }
    for(auto c:s){
        cout << c;
    }

    return 0;
}