#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 > 1000) { cout << "Greater than 1000" << endl; } else if (x > 100) { cout << "Greater than 100 but less than or equal to 1000" << endl; } else { cout << "Less than or equal to 100" << endl; } cout << "Finish..." << endl; return 0; }