DAILY CHALLENGE 11-03-18


a=input()
b=[]
for i in a:
    b.append(i)
b=list(set(b))
b.sort()
b.reverse()
for i in b:
    print(i,end='')

Post a Comment

0 Comments