#include #include using namespace std; int main(int argc, char *argv[]) { //input the first argument int arg1; cout << "Enter the first argument: "; cin >> arg1; //input the second argument int arg2; cout << "Enter the second argument: "; cin >> arg2; //now decide what to do if (arg1 > arg2) { cout << "Arguement 1 is greater than Argument 2" << endl; } else { cout<< "Argument 1 is not greater than Arguement 2" <