Parameters of these operators are lhs and rhs
operator== tests if both elements on lhs and rhs pair are equal. The return value is true if both lhs.first == rhs.first AND lhs.second == rhs.second, otherwise false
std::pair<int, int> p1 = std::make_pair(1, 2);
std::pair<int, int> ...