struct a{
int x,y;
}k[100001];
bool compare(a m,a n){
if(m.x<n.x) return false;
if(m.x==n.x){
if(m.y<=n.y) return false;
return true;
}
return true;
}
sort(a+1,a+10,compare);
struct a{
int x,y;
}k[100001];
bool compare(a m,a n){
if(m.x<n.x) return false;
if(m.x==n.x){
if(m.y<=n.y) return false;
return true;
}
return true;
}
sort(a+1,a+10,compare);