Problem V: 删除数组中的重复元素 II

Problem V: 删除数组中的重复元素 II

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

请按照要求,删除数组中的重复元素。并按照数组的原有顺序输出。

Input

两行。
第一行一个整数 $n\ (1 \leq n ≤ 10,000)$。
第二行 $n$ 个整数。保证每个数字都在 int 范围。

Output

一行。无重复元素的数列,保持原有顺序不变。

Sample 1 Input

11
1 1 1 3 5 3 3 8 9 9 10

Sample 1 Output

1 3 5 8 9 10