1 2 3 4 5 6
#include <utility> std::pair<int, int> make_pair(int first, int second) { return {first, second}; }