sequence.cpp: In function 'void bt(long long int, std::vector<long long int>)':
sequence.cpp:49:20: 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]
49 | for (ll i = 1; i < sv.size(); i++){
| ~~^~~~~~~~~~~
sequence.cpp: In function 'void ans()':
sequence.cpp:80:19: 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]
80 | for (ll i = 1; i < g[0].size(); i++){
| ~~^~~~~~~~~~~~~
sequence.cpp: In function 'void file()':
sequence.cpp:29:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
29 | freopen(namein, "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~
sequence.cpp:30:10: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
30 | freopen(nameout, "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~