biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:15:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | for (int i = 0; i<b.size(); i++) {
| ~^~~~~~~~~
biscuits.cpp:18:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | int here = carry+(i<a.size()?a[i]:0);
| ~^~~~~~~~~
biscuits.cpp:33:7: warning: unused variable 'cont' [-Wunused-variable]
33 | bool cont = 1;
| ^~~~