#include<iostream>
using namespace std;
int main()
{
int x,y;
int a,b,c,d,e,f;
while(cin>>x)
{
for(y=1;y<=x;y++)
{
cin>>a>>b>>c>>d>>e>>f;
if( (f-b)!=0&&(d-f)!=0&&(d-b)!=0 )
{
if( (e-a)*(d-f)==(c-e)*(f-b)&&(c-e)*(d-b)==(c-a)*(d-f)&&(e-a)*(d-b)==(c-a)*(f-b) )
{
if(a>e&&e>c||a<e&&e<c)
cout<<"該死的東西!竟敢想讓我死!"<<endl;
else if(a==c&&a==e&&c==e||b==d&&b==f&&d==f)
{
if(a>e&&e>c||a<e&&e<c||b>d&&d>f||b<d&&d<f)
cout<<"該死的東西!竟敢想讓我死!"<<endl;
}
}
else
cout<<"父親大人!母親大人!我快到了!"<<endl;
}
}
}
return 0;
}
wa:line 7