#include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int L, M, N; cin >> L >> M >> N; bitset<100000> a, b; for (int i = 0; i < L; i++) { int x; cin >> x; a.set(x - 1); } for (int i = 0; i < M; i++) { int x; cin >> x; b.set(x - 1); } int Q; cin >> Q; for (int i = 0; i < Q; i++) { cout << (a & b).count() << endl; b <<= 1; } return 0; }