#include<iostream>#include<stdio.h>#include<math.h>#include<string.h>using namespace std;#define esp 0.000000001#define pi 3.1415926int equal(double a,double b){if(fabs(a-b)<esp)return 1;return 0;}int main(){int t,flag;double x1,x2,y1,y2,i;scanf("%d",&t);while(t--){scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2);if(x1>y1)swap(x1,y1);if(x2>y2)swap(x2,y2);if(x2*y2>x1*y1)flag=0;else if( (x2<x1 || equal(x2,x1)) && (y2<y1 || equal(y2,y1)) )flag=1;else flag=0;if(flag==1) printf("Escape is possible.n");else{for(i=0;i<=90;i=i+0.1){double p=i*pi/180.0;double x=x2*cos(p)+y2*sin(p);double y=x2*sin(p)+y2*cos(p);if( (x<x1 || equal(x1,x)) && (y<y1 || equal(y,y1)) ){flag=1;break;}}if(flag)printf("Escape is possible.n");else printf("Box cannot be dropped.n");}}return 0;}


