//Ryan Shahriyarpour CS1A Carl Argila CH2 HW Q:6
//
/*****************************************************************************
 *
 * Computing the annual pay of an employee
 *
 *
 * *******
 * 
 * An employee earns 1700 dollars every two weeks which means they will be
 * paid 26 times in one year. The outcome of the program will calculate
 * this employees anual pay.
 *
 * To find out the annual pay, the program will compute:
 * annualPay = payAmount * payPeriods
 *
 *
 * *******
 *
 * INPUT
 *  pay amount   : $1700.00
 *  pay periods  : 26
 *
 * OUTPUT
 *  annual pay   : the total annual pay
 *
 *****************************************************************************/

#include <iostream>

int main() {
    // Assign variables to the specific numbers
    double payAmount = 1700.0;
    double payPeriods = 26;

    // Calculate the annual pay and store
    double annualPay = payAmount * payPeriods;

    // Show the annual pay of the employee in dollars
    std::cout << "The annual pay of the employee is $ " << annualPay << std::endl;

    return 0;
}