using namespace std; int main(int argc, char**argv) { if (auto x = argc - 2) { cout << x << ", !=" << endl; } else { cout << x << ", ==" << endl; } return 0; }