shymbulak.cpp: In function 'void dfs(long long int)':
shymbulak.cpp:19:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for (int i = 0; i < v[n].size(); i++) {
| ~~^~~~~~~~~~~~~
shymbulak.cpp: In function 'int main()':
shymbulak.cpp:4:12: error: request for member 'push_back' in 'v', which is of non-class type 'std::vector<long long int> [n]'
4 | #define pb push_back
| ^~~~~~~~~
shymbulak.cpp:37:11: note: in expansion of macro 'pb'
37 | v.pb({});
| ^~