#include <stdio.h>
#include <string.h>

int main() {
    char s[10];
    unsigned long n = 0;
    while (scanf("%s", s) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
    }
    n = strlen(s);
    for(int i = n - 1; i > 0; i--)
        for(int j = i - 1; j >= 0; j--)
        {
            if(s[i] == s[j])
            {
                //printf("i=%d s=%s\n",i,  s);
                s[j] = 'a';
            }
        }
    
    for(int i = n - 1; i >= 0; i--)
    {
        if(s[i] != 'a')
            printf("%c", s[i]);
    }
    return 0;
}