#include <stdio.h>

int main(int argc,char **argv)
{
	printf("argc = %d\n",argc);
	for(int i=0;i<=argc+1;i++)
	{
		printf("\t%s\n",argv[i]);
	}
}

