Create a template class, OrderedPair. Note that it will only work with types that have the operators + and < overloaded. But you should be able to try your templated class out with types string, myString, double, feetInches, and fraction.
Finally, to show that your class will work with different types, and also to show that you know how to use a templated class as a client, modify the given client file so that it uses your class using int as the type parameter, and then, in the same main(), repeat the code again with a few changes necessary to make it use ordered pairs of strings instead of ordered pairs of ints.