Problem J: 去重(一维数组、循环)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:26 Solved:8

Description

依次输入n个数,将其去重后依次输出。

Input

第一行一个数n(n<100)
第二行n个正整数,每个整数大于等于1且小于5000,数与数之间以空格隔开

Output

输出去重后的数

Sample Input Copy

10
1 1 2 2 3 9 3 9 4 1

Sample Output Copy

1 2 3 9 4

Source/Category