set1 = set(item for item in input().split(" ")) print(sorted(set1)) # 注意sorted函数并不会改变原有集合的顺序,而是会返回一个新集合,新集合为排序后的集合