#include <bits/stdc++.h>
using namespace std ;
int main ()
{
int m , n ,x,y,t ,i ;
while (cin>>t && t!=0)
{
cin>>m>>n ;
for (i=1 ; i<=t ; i++)
{
cin>>x>>y ;
x=x-m ;
y=y-n ;
if (x>0 && y>0) cout<<"NE"<<endl ;
else if (x>0 && y<0) cout<<"SE"<<endl ;
else if (x<0 && y>0) cout<<"NO"<<endl ;
else if (x<0 && y<0) cout<<"SO"<<endl ;
else cout<<"divisa"<<endl ;
}
}
return 0 ;
}
using namespace std ;
int main ()
{
int m , n ,x,y,t ,i ;
while (cin>>t && t!=0)
{
cin>>m>>n ;
for (i=1 ; i<=t ; i++)
{
cin>>x>>y ;
x=x-m ;
y=y-n ;
if (x>0 && y>0) cout<<"NE"<<endl ;
else if (x>0 && y<0) cout<<"SE"<<endl ;
else if (x<0 && y>0) cout<<"NO"<<endl ;
else if (x<0 && y<0) cout<<"SO"<<endl ;
else cout<<"divisa"<<endl ;
}
}
return 0 ;
}