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: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for(int i = 0; i < a.size(); i++) {
| ~~^~~~~~~~~~
biscuits.cpp:30:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
30 | for(int i = 0; i < rs.size(); i++) {
| ~~^~~~~~~~~~~
biscuits.cpp:13:6: warning: unused variable 'tot' [-Wunused-variable]
13 | int tot = 0;
| ^~~
biscuits.cpp: In function 'bool inf(long long int, long long int)':
biscuits.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
11 | }
| ^