You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
220 B

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(int argc, char *argv[])
  5. {
  6. if (argc < 3)
  7. {
  8. cerr << "Usage: " << argv[0] << " <n> <size>" << endl;
  9. exit(1);
  10. }
  11. cout << argv[argc-1];
  12. exit(0);
  13. }