public class Argue
{
	/*********************************************************************
	 * A main method to demonstrate incoming command line arguments
	 * @param args An array of String that may be empty or may contain
	 *             values that we will use in a program
	 ********************************************************************/
	public static void main(String args[])
	{
		int count;
		
		if (args.length > 0)     // must check to see if there is anything 
		{
			System.out.printf("I am an argument: %s\n", args[0]);
		}
		else
		{
			System.out.printf("There are no arguments.\n");
		}
		
		// we have a number
		if (args.length > 0 && Character.isDigit(args[0].charAt(0)))
		{
			count = Integer.parseInt(args[0]);
			
			for (int ii = 1; ii <= count; ii++)
			{
				System.out.printf("Count: %d\n", ii);
			}
		}
				
	}
}