//1
bool comp(const int &a,const int &b)
{
if(a!=b) return a>b;
else return a>b;
}
//2
bool comp(const int a,const int b)
{
if(a!=b) return a>b;
else return a>b;
}
//1
bool comp(const int &a,const int &b)
{
if(a!=b) return a>b;
else return a>b;
}
//2
bool comp(const int a,const int b)
{
if(a!=b) return a>b;
else return a>b;
}