chameleon.cpp: In function 'void Solve(int)':
chameleon.cpp:25:30: error: no matching function for call to 'std::vector<std::pair<int, int> >::push_back(int&, int&)'
25 | ans.push_back(i, j);
| ~~~~~~~~~~~~~^~~~~~
In file included from /usr/include/c++/13/vector:66,
from chameleon.h:5,
from chameleon.cpp:1:
/usr/include/c++/13/bits/stl_vector.h:1281:7: note: candidate: 'constexpr void std::vector<_Tp, _Alloc>::push_back(const value_type&) [with _Tp = std::pair<int, int>; _Alloc = std::allocator<std::pair<int, int> >; value_type = std::pair<int, int>]'
1281 | push_back(const value_type& __x)
| ^~~~~~~~~
/usr/include/c++/13/bits/stl_vector.h:1281:7: note: candidate expects 1 argument, 2 provided
/usr/include/c++/13/bits/stl_vector.h:1298:7: note: candidate: 'constexpr void std::vector<_Tp, _Alloc>::push_back(value_type&&) [with _Tp = std::pair<int, int>; _Alloc = std::allocator<std::pair<int, int> >; value_type = std::pair<int, int>]'
1298 | push_back(value_type&& __x)
| ^~~~~~~~~
/usr/include/c++/13/bits/stl_vector.h:1298:7: note: candidate expects 1 argument, 2 provided