#include <iostream>
using namespace std;
int main() {
	//Define variables for calculation
	int EmployeeID;
	double HoursWorked;
	double RatePerHour;
	double GrossSalary;
	//Ask user for input
	cout << "Enter Employee ID: ";
	cin >> EmployeeID;
	cout << "Enter Hours Worked by Employee in one week: ";
	cin >> HoursWorked;
	cout << "Enter Hourly Rate for Employee: ";
	cin >> RatePerHour;
	//Display header
	cout << "********************************************" << endl;
	cout << "Author: Nathan Hocking" << endl;
	cout << "Program Name: Nathan_Project1.cpp" << endl;
	cout << "Date: October 5th, 2024" << endl;
	cout << "College Name: Long Beach City College (LBCC)" << endl;
	cout << "********************************************" << endl;
	//Return user input
	cout << "Employee ID: " << EmployeeID << endl;
	cout << "Hours Worked: " << HoursWorked << endl;
	cout << "Rate per Hour: " << RatePerHour << endl;
	//Salary is hours worked in a week times hourly rate
	GrossSalary = HoursWorked * RatePerHour;
	cout << "Gross Salary: $" << GrossSalary << " / week";

	return 0;
}