#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=1000;
int main()
{
int n,q,x,a[maxn],kase=0;
while(scanf("%d%d",&n,&q)==2&&n)
{
printf("CASE# %d:
",++kase);
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
sort(a,a+n);
while(q--)
{
scanf("%d",&x);
int p=lower_bound(a,a+n,x)-a;//lower_bound查找大于或等于x的第一个位置
if(a[p]==x)
printf("%d found at %d
",x,p+1);
else
printf("%d not found
",x);
}
}
return 0;
}