/*#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("Hello world!\n");
return 0;
}
617
198
197
*/
/*
#include <stdio.h>
typedef struct
{
int cm;
char name[5];
}student;
int main()
{
student arr[6]={};
int i;
int d;
int heigh=1000;
for(i=1; i<=5; i++)
{
scanf("%s %d",arr[i].name, &arr[i].cm);
}
for(i=1;i<=5;i++)
{
if(arr[i].cm<heigh)
{
heigh=arr[i].cm;
d=i;
}
}
printf("%s %d",arr[d].name,arr[d].cm);
}
*/
/*
#include <stdio.h>
typedef struct
{
int h;
double w;
}md;
int main()
{
md arr[3]={};
int i;
int sonh;
double sonw;
for(i=1;i<=2;i++)
{
scanf("%d %lf",&arr[i].h,&arr[i].w);
}
sonh=(arr[1].h+arr[2].h)/2+5;
sonw=(arr[1].w+arr[2].w)/2-4.5;
printf("height : %dcm\nweight : %0.1fkg",sonh,round(sonw*100)/100);
}
*/
#include <stdio.h>
typedef struct
{
int x, y, x2, y2;
}square;
int main()
{
square arr[3];
for(i=1;i<=2;i++)
{
scanf("%d %d %d %d" ,&arr[i].x, &arr[i].y,&arr[i].x2,&arr[i].y2);
}
if(arr[1].x<arr[5].x)
{
}
}