Design an algorithm using pseudocode that will accept a seri
     Design an algorithm, using pseudocode that will accept a series you\'re a user at the terminal. The first integer is special, as it indicates how many more Integers will follow. Your algorithm is  calculate the sum and average of the integers, excluding the first integer, and display their values to  terminal screen. Do not just display the numbers!! The output to the terminal screen should look something like: sum of the numbers is 990, and the average of the numbers is 99 
  
  Solution
Please find the required program along with its output. Please see the comments against each line to understand the step.
------------------------------------------------------------
OUTPUT:
Enter numbers:
 10
 3
 5
 2
 8
 3
 12
 6
 11
 9
 0
 The sum of the numbers is 59, and the average of the numbers is 5.0

