Run ID:66929

提交时间:2024-03-12 13:48:05

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