game.cpp: In function 'void Print()':
game.cpp:24:6: error: 'y' was not declared in this scope
24 | For(y, n) {
| ^
game.cpp:24:2: error: 'For' was not declared in this scope
24 | For(y, n) {
| ^~~
game.cpp:28:2: error: 'printl' was not declared in this scope; did you mean 'printf'?
28 | printl("-------------"); }
| ^~~~~~
| printf
game.cpp: In function 'void init(int, int)':
game.cpp:34:6: error: 'x' was not declared in this scope
34 | For(x, n) {
| ^
game.cpp:34:2: error: 'For' was not declared in this scope
34 | For(x, n) {
| ^~~
game.cpp: In function 'void add(int, int)':
game.cpp:45:6: error: 'i' was not declared in this scope
45 | For(i, n) {
| ^
game.cpp:45:2: error: 'For' was not declared in this scope
45 | For(i, n) {
| ^~~
game.cpp: In function 'bool check()':
game.cpp:56:6: error: 'x' was not declared in this scope
56 | For(x, k) {
| ^
game.cpp:56:2: error: 'For' was not declared in this scope
56 | For(x, k) {
| ^~~