#include<iostream>
using namespace std;
int n, m, r, a[105], b[105];
int main(){
freopen("killer.in", "r", stdin);
freopen("killer.out", "w", stdout);
cin >> n >> m >> r;
for(int i = 1; i <= n; i ++)
cin >> a[i];
for(int i = 1; i <= m; i ++){
int t;
cin >> t;
b[i] = t;
int e = 1;
for(int j = 1; j <= n; j ++){
if(t % a[j] != 0)
e = 0;
}
if(e){
cout << i;
return 0;
}
}
int e = 0;
for(int i = 1; i <= m; i ++){
int sum = 0;
for(int j = 1; j <= n; j ++){
if(b[i] % a[j] == 0)
sum ++;
}
if(sum >= r){
cout << i << " ";
e = 1;
}
}
if(e == 0)
cout << "0";
return 0;
}