Run ID:66928

提交时间:2024-03-12 13:47:43

n = int(input()) a = input().split() b =[] for x in a: if x not in b: b.append(x) print(" ".join(b))