biscuits.cpp: In function 'll count_tastiness(ll, std::vector<long long int>)':
biscuits.cpp:27:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int i=0; i<_A.size(); i++) A[i]=_A[i];
| ~^~~~~~~~~~
biscuits.cpp:43:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for(int i=0; i<V.size(); i++) ans+=(ll)V[i]<<i;
| ~^~~~~~~~~
biscuits.cpp:31:12: warning: unused variable 'cnt' [-Wunused-variable]
31 | ll now=0, cnt=0, ans=0;
| ^~~