biscuits.cpp: In function 'bool can(long long int, std::vector<long long int>)':
biscuits.cpp:9:17: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
9 | if (a.size() < i || a[i] < N) return false;
| ~~~~~~~~~^~~
biscuits.cpp:11:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
11 | if (i+1 < a.size())
| ~~~~^~~~~~~~~~