import java.util.*;
public class FindSpecificValue{
public static void main(String args []){
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println("Enter the array");
int arr[] = new int[n];
for(int i=0; i<n; i++){
arr[i]=sc.nextInt();
}
System.out.println("Enter the no to be found");
int x = sc.nextInt();
for(int i =0;i<n;i++){
if(arr[i]==x){
System.out.println(x+" "+"found at the location"+" "+i);
}
}
}
}