biscuits.cpp: In function 'bool check(long long int, long long int, std::vector<long long int>)':
biscuits.cpp:9:16: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
9 | while(v.size()<=b)v.push_back(0);
| ~~~~~~~~^~~
biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:23:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for(int i = 0;i<a.size();i++)sum += a[i]*(1ll<<i);
| ~^~~~~~~~~
biscuits.cpp:21:6: warning: unused variable 'n' [-Wunused-variable]
21 | int n = a.size();
| ^