Main.cpp: In function 'bool sq(int)':
Main.cpp:14:11: warning: '*' in boolean context, suggest '&&' instead [-Wint-in-bool-context]
14 | return n * n;
| ~~^~~
Main.cpp: In function 'void solve()':
Main.cpp:26:3: error: 'cnt' was not declared in this scope; did you mean 'int'?
26 | cnt += v[i] % 2 ;
| ^~~
| int
Main.cpp:28:11: error: 'cnt' was not declared in this scope; did you mean 'int'?
28 | cout << (cnt == n or cnt == 0 ? 0 : 1);
| ^~~
| int
Main.cpp:23:7: warning: unused variable 'flg' [-Wunused-variable]
23 | bool flg = 0;
| ^~~