biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:16:29: error: request for member 'size' in 'a', which is of non-class type 'll [64]' {aka 'long long int [64]'}
16 | for (int i = 0; i < int(a.size()); ++i) {
| ^~~~
biscuits.cpp:27:11: error: request for member 'push_back' in 'a', which is of non-class type 'll [64]' {aka 'long long int [64]'}
27 | a.push_back(0);
| ^~~~~~~~~
biscuits.cpp:29:19: error: request for member 'begin' in 'a', which is of non-class type 'll [64]' {aka 'long long int [64]'}
29 | reverse(a.begin(), a.end());
| ^~~~~
biscuits.cpp:29:30: error: request for member 'end' in 'a', which is of non-class type 'll [64]' {aka 'long long int [64]'}
29 | reverse(a.begin(), a.end());
| ^~~