furniture.cpp: In function 'bool check(int, int)':
furniture.cpp:5:23: warning: statement has no effect [-Wunused-value]
5 | #define debug(...) 69
| ^~
furniture.cpp:34:3: note: in expansion of macro 'debug'
34 | debug(i,j,!ok[i-1][j],!ok[i][j-1],!ok[i+1][j],!ok[i][j+1]);
| ^~~~~
furniture.cpp: In function 'void dfs(int, int)':
furniture.cpp:5:23: warning: statement has no effect [-Wunused-value]
5 | #define debug(...) 69
| ^~
furniture.cpp:45:2: note: in expansion of macro 'debug'
45 | debug(x,y);
| ^~~~~
furniture.cpp: In function 'bool qry(int, int)':
furniture.cpp:5:23: warning: statement has no effect [-Wunused-value]
5 | #define debug(...) 69
| ^~
furniture.cpp:56:2: note: in expansion of macro 'debug'
56 | debug(x,y,ok[x][y]);
| ^~~~~
furniture.cpp:6:24: warning: statement has no effect [-Wunused-value]
6 | #define debugArr(...) 69
| ^~
furniture.cpp:59:32: note: in expansion of macro 'debugArr'
59 | for(int i = 1; i <= n ; i ++) debugArr(ok[i],m+2);
| ^~~~~~~~
furniture.cpp:6:24: warning: statement has no effect [-Wunused-value]
6 | #define debugArr(...) 69
| ^~
furniture.cpp:61:32: note: in expansion of macro 'debugArr'
61 | for(int i = 1; i <= n ; i ++) debugArr(ok[i],m+2);
| ^~~~~~~~