/**************************************************************************
* AUTHOR : Matthew van der Steen *
* STUDENT ID : 1340832 *
* LAB #1 : IDEOne *
* CLASS : CS1A *
* SECTION : MTWTh 3PM - 5:35PM *
* DUE DATE : 6/23/2025 *
*************************************************************************/
#include <iostream>
#include <iomanip>
using namespace std;
int main ()
{
/**********************************************************************
* CONSTANTS
* --------------------------------------------------------------------
* PROGRAMMER : Programmer's Name
* CLASS : Student's Course
* SECTION : Class Days and Time
* LAB_NUM : Lab Number
* LAB_NAME : Title of the Lab
*********************************************************************/
const char PROGRAMMER[30] = "Matthew van der Steen";
const char CLASS[5] = "CS1A";
const char SECTION[25] = "MTWTh 3PM - 5:35PM";
const int LAB_NUM = 1;
const char LAB_NAME[17] = "IDEOne";
cout << left;
cout << "**************************************************";
cout << "\n* PROGRAMMED BY : " << PROGRAMMER;
cout << "\n* " << setw(14) << "CLASS" << ": " << CLASS;
cout << "\n* " << setw(14) << "SECTION" << ": " << SECTION;
cout << "\n* LAB #" << setw(9) << LAB_NUM << ": " << LAB_NAME;
cout << "\n**************************************************\n\n";
cout << right;
return 0;
}