/*
 * See excercize 11.6 for a more generic solution
 */

#include <iostream>

int main(int argc, char** argv) {
    std::cout << "See solution 11.6" << std::endl;
    return 0;
}
