// ****************************************************************
// Main.java
//
// Instantiates and starts the Sales class
//
// ****************************************************************

import java.io.*; 

public class Main
{
    public static void main(String[] args)
    {
	// instantiate the 
	String Sales=null;
	int number=0;	
 	BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); 

 
	

	if (args.length == 0)
	{
	try { 
         Sales  = br.readLine(); 
      	} 
	catch (IOException ioe) { 
         System.out.println("Couldnt Read # of Sales Peolple..try again"); 
         System.exit(1); 
      } 
	number = Integer.parseInt(Sales);
	Sales mySalesInfo = new Sales(number);

	// and start
	mySalesInfo.testMe();
	System.out.println(number);


	}
	else
	{
	System.out.println("wwhhhhhhhh");
	Sales mySalesInfo = new Sales(Integer.parseInt(args[0]));

	// and start
	mySalesInfo.testMe();
	}
   }
}




