/**************************************************************************
* AUTHOR : Matthew Santos *
* STUDENT ID : A00294169 *
* LAB #1 : ideone Tutorial *
* CLASS : CS1A *
* SECTION : ATAS 144 10:30 - 12:50 *
* DUE DATE : 8/21/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 Santos";
const char CLASS[5] = "CS1A";
const char SECTION[25] = "ATAS 10:30PM - 12:50PM ";
const int LAB_NUM = 1;
const char LAB_NAME[17] = "Ideone Tutorial";
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;
}