Problem u: 查找数值元素

Problem u: 查找数值元素

Time Limit: 100000 Sec  Memory Limit: 128 MB
Submit: 656  Solved: 283
[Submit] [Status] [Web Board] [Creator:]

Description

输入一个有n个整数的数组,输入一个待查找的数,如果该数在数值中输出,输出数组中其他的数。如果不在数组中,则输出Not Found。

Input

5
12
34
56
78
32
12

Output

34 56 78 32

Sample Input

5

12

34

56

78

32

12

Sample Output

34 56 78 32

[Submit][Status]