#include <stdio.h>

int main( int argc, char **argv )
{
	printf( "Argomento 1: %s\n", argv[1] );
	printf( "argc=%d\n", argc );
	return(1);
}

