PROGRAMMING:finding integer
The question request that finds a designate integer (X) from N numbers (0###Input format:
The first line, input the number of list --N;
the second line, input N integers, seperate each other by 1 space;
the third line , input the searching integer --X.
###Output format:
If found it, output "Found value X in element k"
otherwise output “Not Found”.
###Input sample 1:
```in
five
7 15 3 66 4
sixty-six
```
###Output sample 1:
```out
Found value 66 in element 3
```
###Input sample 2:
```in
five
7 15 3 66 4
six
```
###Output sample 2:
```out
Not Found
```
answer:If there is no answer, please comment
The first line, input the number of list --N;
the second line, input N integers, seperate each other by 1 space;
the third line , input the searching integer --X.
###Output format:
If found it, output "Found value X in element k"
otherwise output “Not Found”.
###Input sample 1:
```in
five
7 15 3 66 4
sixty-six
```
###Output sample 1:
```out
Found value 66 in element 3
```
###Input sample 2:
```in
five
7 15 3 66 4
six
```
###Output sample 2:
```out
Not Found
```
answer:If there is no answer, please comment