#include #include #include #include #include #include using namespace std; set a, b; int main() { int n; while(cin>>n) { a.clear(), b.clear(); for(int i=0; i>t; a.insert(t); } for(int i=0; i>t; b.insert(t); } set::iterator it1=a.begin(), it2=b.begin(); bool ans=true; while(it1!=a.end() && it2!=b.end()) { if(*it1!=*it2) {ans=false;break;} it1++, it2++; } if(ans && it1==a.end() && it2==b.end()) cout<<"YES"<