#include <bits/stdc++.h>
using namespace std;
int v[100],n,i,e,p;
bool gasit;
int main()
{
cin >> n >> e;
for(i=1;i<=n;i++)
cin >> v[i];
for(i=1;i<=n;i++)
if (v[i]==e)
{
gasit=true;
p=i;
break;
}
if(gasit) cout << e << " Este al " << p << " - lea element";
else cout << e << " nu se gaseste in vector";
return 0;
}