biscuits.cpp: In function 'long long int solve(long long int, long long int)':
biscuits.cpp:10:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
10 | if(mp.find(n)!=mp.end())
| ^~
biscuits.cpp:12:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
12 | long long a = __lg(n-1);
| ^~~~
biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:21:14: 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]
21 | for(i=0;i<a.size();i++)
| ~^~~~~~~~~
biscuits.cpp:27:9: warning: statement has no effect [-Wunused-value]
27 | for(i;i<=60;i++)
| ^
biscuits.cpp:18:17: warning: unused variable 'j' [-Wunused-variable]
18 | long long i,j;
| ^