summaryrefslogtreecommitdiff
path: root/781/floors.c
blob: ab8d257fae9204748c1e26fa1fae6097ae3261b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <stdio.h>

/*
    
 */

int main(){
    int n;
    scanf("%d", &n);
    while(n--){
	int i, f, e, a, b, x[100]={0}, y[100]={0};
	scanf("%d %d %d %d", &f, &e, &a, &b);
	
	for(i=0; i<e; i++)
	    scanf("%d %d", &x[i], &y[i]);

	int elev, found = 0;

	if(found==1)
	    printf("It is possible to move the furniture.\n");
	else
	    printf("The furniture cannot be moved.\n");
    }
    return 0;
}