#include "Utils.hpp" #include #include using namespace std; int main(int argc, char **argv) { int const x = Utils::stoiWithDefault(string(argv[1]), 0); cout << "Start..." << endl; if (x > 10) { cout << "Greater than 10" << endl; } else { cout << "Less than or equal to 10" << endl; } cout << "Finish..." << endl; return 0; }