biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:14: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]
14 | for (int i = 0; i<b.size(); i++) {
| ~^~~~~~~~~
biscuits.cpp:17: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]
17 | int here = carry+(i<a.size()?a[i]:0);
| ~^~~~~~~~~
biscuits.cpp:37:7: warning: variable 'cont' set but not used [-Wunused-but-set-variable]
37 | bool cont = 1;
| ^~~~