#include<bits/stdc++.h>
using namespace std;
int t,n,m,k,l,r,op,x,y;
unordered_set<int> st;
void solve(){
cin>>n;
for(int i = 1;i<=n;i++){
cin>>x;
st.insert(x);
}
cin>>m;
for(int i = 1;i<=m;i++){
cin>>x;
if(st.find(x)!=st.end()){
cout<<"YES";
}else{
cout<<"NO";
}
cout<<"\n";
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}