chameleon.cpp: In function 'void Solve(int)':
chameleon.cpp:12:12: error: 'pair' was not declared in this scope; did you mean 'std::pair'?
12 | vector<pair<int, int>> ans;
| ^~~~
| std::pair
In file included from /usr/include/c++/13/bits/stl_algobase.h:64,
from /usr/include/c++/13/vector:62,
from chameleon.h:5,
from chameleon.cpp:1:
/usr/include/c++/13/bits/stl_pair.h:187:12: note: 'std::pair' declared here
187 | struct pair
| ^~~~
chameleon.cpp:12:5: error: 'vector' was not declared in this scope
12 | vector<pair<int, int>> ans;
| ^~~~~~
chameleon.cpp:12:5: note: suggested alternatives:
In file included from /usr/include/c++/13/vector:66:
/usr/include/c++/13/bits/stl_vector.h:428:11: note: 'std::vector'
428 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
/usr/include/c++/13/vector:86:13: note: 'std::pmr::vector'
86 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
chameleon.cpp:12:17: error: expected primary-expression before 'int'
12 | vector<pair<int, int>> ans;
| ^~~
chameleon.cpp:30:17: error: 'ans' was not declared in this scope
30 | ans.push_back(i, j);
| ^~~
chameleon.cpp:36:16: error: 'ans' was not declared in this scope
36 | Answer(ans[i].first, ans[i].second);
| ^~~