net.cpp: In function 'int main()':
net.cpp:4:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
4 | #define FOR(i, a, b) for(int i = a; i <= b; i++)
......
26 | FOR(i, 0, n2.size() - 1){
| ~~~~~~~~~~~~~~~~~~~
net.cpp:26:5: note: in expansion of macro 'FOR'
26 | FOR(i, 0, n2.size() - 1){
| ^~~
net.cpp:27:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | if(i == n2.size() - 1){
| ~~^~~~~~~~~~~~~~~~