#include #include #include #include "library.h" int main(int argc, char * argv[]) { if (argc < 3) { std::cerr << "usage: mwe " << std::endl; return EXIT_FAILURE; } int i = std::atoi(argv[1]); int j = std::atoi(argv[2]); std::cout << i << " + " << j << " = " << i + j << std::endl; return EXIT_SUCCESS; }