#include<bits/stdc++.h> using namespace std; struct note { int x,y; }a[1005],b[1005]; bool cmp(const note&aa,const note&bb) { if(aa.x==bb.x)return aa.y<bb.y; else return aa.x<bb.x; // if(min(aa.x,aa.y)==min(bb.x,bb.y))return max(aa.x,aa.y)<max(bb.x,bb.y); // else return min...