3 1 4 1 5 9 2 6 5 3
1 2 3 4 5 6 9
nums = list(map(int, input().split())) result = sorted(set(nums)) print(*result)