PROGRAMMING:Counting money
$$Bear$$_$$ There is a small vault with $$n $$bills in it. Now he wants to count the banknotes in order. If the banknote he has counted has the same amount before, he will output $$* $, otherwise, he will output the amount of the banknote.
Guarantee that the amount of the note does not exceed $$10 ^ 3 $.
###Input format:
In the first line, give a positive integer $$n (1 < = n < = 10 ^ 3) $$to represent that there are $$n $$banknotes in the Treasury.
The second line gives $$n $$positive integer and $$I $$integer $$X_ I $$represents the amount of note $$I $.
###Output format:
In one line, output the corresponding amount for each note, if there is no note with the same amount before; Otherwise output$$*$$
Note that the two outputs are separated by spaces in the middle and no spaces at the end of the line
###Input example:
```in
five
1 2 1 3 2
```
###Output example:
```out
1 2 * 3 *
```
answer:If there is no answer, please comment
Guarantee that the amount of the note does not exceed $$10 ^ 3 $.
###Input format:
In the first line, give a positive integer $$n (1 < = n < = 10 ^ 3) $$to represent that there are $$n $$banknotes in the Treasury.
The second line gives $$n $$positive integer and $$I $$integer $$X_ I $$represents the amount of note $$I $.
###Output format:
In one line, output the corresponding amount for each note, if there is no note with the same amount before; Otherwise output$$*$$
Note that the two outputs are separated by spaces in the middle and no spaces at the end of the line
###Input example:
```in
five
1 2 1 3 2
```
###Output example:
```out
1 2 * 3 *
```
answer:If there is no answer, please comment