import java.util.Scanner;

/**********************************************************************
// Note: the acknowledgement section is not needed for labs
// Acknowledgements: ...
/**********************************************************************

/**********************************************************************
 * Class purpose: This class demonstrates the java loop
 * 
 * @author  Arch Harris
 * @version 10/16/05
 *********************************************************************/

public class Loop0
{
   /******************************************************************
    * Function purpose: Main will be used to demonstrate loops 
    *
    * @param args Command line arguments, ignored
    *****************************************************************/
   public static void main(String [] args)
   {
		Scanner stdin;
		int	sum;
		int	inputVal;
		
		stdin = new Scanner(System.in);
		System.out.printf ("Input 5 numbers: ");
		sum = 0;

		// Write code that inputs 5 numbers and sums
		// them using only vars `sum' and `inputVal'.

		System.out.printf("Sum is %d\n", sum);
	}
}
