fountain.cpp: In function 'int main()':
fountain.cpp:9:22: error: invalid declarator before 'meowmeow'
9 | stack <uint32_t> meowmeow;
| ^~~~~~~~
fountain.cpp:12:17: error: 'meowmeow' was not declared in this scope
12 | while (!meowmeow.empty() && diametrs[meowmeow.top()] < diametrs[i]){
| ^~~~~~~~
fountain.cpp:16:9: error: 'meowmeow' was not declared in this scope
16 | meowmeow.push(i);
| ^~~~~~~~
fountain.cpp:22:24: warning: comparison of integer expressions of different signedness: 'uint32_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
22 | if (volume < capacitys[level] + 1){
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~