/* This is an example of a valid submission to the
 * ShoC Contest. Of course, this program has no
 * chance, provided someone takes it, removes
 * at least one character, and submits it.
 *
 * Compile with gcc -o example example.c o.o
 *
 * Have fun,
 *		Peter
 */

void main( int argc, char *argv[] )
{
int i1, i2, i, increment;

	if( argc != 3 )
	{
		printf( "Wrong number of arguments!\n" );
		return;
	}

	i1 = atoi(argv[1]);
	i2 = atoi(argv[2]);

	if( i1 < i2 )
		increment = 1;
	else
		increment = -1;

	for( i = i1; i != i2; i = i + increment )
		o( i );

	o( i2 );
}

