#include "pair.h" #include #include using namespace std; bool lessThanK(const Pair & p) { return p.getKey()[0] < 'K' || p.getKey()[0] < 'k' ; } int main() { Pair p1(34,56); Pair p2('A',65); Pair p3("hello", "hola"); cout << p1 << endl << p2 << endl <