Skip to content

Baekjoon 10867

1. Problem

문제 확인하기

2. Solution

N = int(input())
lst = map(int, input().split())
print(*sorted(list(set(lst))))