//Ryan Shahriyarpour CS1A Carl Argila CH2 HW Q:5
//
/*****************************************************************************
 *
 * Computing the Average of 5 Values
 *
 *
 * *******
 * The goal of the program is to find and compute the average of five values:
 * 28, 32, 37, 24, and 33.
 *
 *
 * To do this correctly, the program will compute:
 * sum = num1 + num2 + num3 + num4 + num5
 * average = sum / 5 
 *
 *
 * *******
 *
 * INPUT
 *  number 1 : 28
 *  number 2 : 32
 *  number 3 : 37
 *  number 4 : 24
 *  number 5 : 33
 *
 * OUTPUT
 *  average  : The average of the five values
 *
 *****************************************************************************/

#include <iostream>

int main() {
    // Specify the numbers and assign them each to a variable
    int num1 = 28;
    int num2 = 32;
    int num3 = 37;
    int num4 = 24;
    int num5 = 33;

    // Compute the sum as well as the average
    int sum = num1 + num2 + num3 + num4 + num5;
    double average = sum / 5;

    // Now display what the output is
    std::cout << "The average is " << average << std::endl;

    return 0;
}