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

main(int argc, char  **argv) {
	int i;
	printf("On the command line, there are %d items\n", argc);	

/* Access each argument made at the command line and print it out */
	for(i = 0; i < argc; i++) {
		printf("%s\n", *(argv + i));

	}
	
}