#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {

  // print out the arguments
  printf("You ran this program with the following arguments...\n");
  for(int i=0; i < argc; i++) {
    printf("  %s\n", argv[i]);
  }
  
  return 0;
}