biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:13:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
13 | for(int i = 1;i < a.size();i++){
| ~~^~~~~~~~~~
biscuits.cpp:17:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | if(i == a.size() - 1) a.push_back((a[i]-1)/2);
| ~~^~~~~~~~~~~~~~~
biscuits.cpp:23:1: warning: control reaches end of non-void function [-Wreturn-type]
23 | }
| ^