dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:30:25: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
30 | if(d.size() >= n){
| ~~~~~~~~~^~~~
dango3.cpp:40:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int i=0; i<d.size(); i+=b){
| ~^~~~~~~~~
dango3.cpp:42:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for(int j=i; j<i+b and j < d.size(); j++){
| ~~^~~~~~~~~~
dango3.cpp:51:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | for(int j=i; j<i+b and j < d.size(); j++){
| ~~^~~~~~~~~~
dango3.cpp:54:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | for(int j=i; j<i+b and j < d.size(); j++){
| ~~^~~~~~~~~~
dango3.cpp: At global scope:
dango3.cpp:9:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
9 | int variable_example = 1;
| ^~~~~~~~~~~~~~~~