/*
 * 	PROGRAMMED BY : ANDRES GUZMAN-NIETO
 * 	CLASS		  : CSC5
 * 	SECTION		  : Mon - Wed - 2:20p-5:30p
 * 	ASSIGNMENT #1 : Basic Input / Output
 */
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main ()
{
	string name;
//
// Implement input & fix output spacing after reading & watching chapter 3
	cout << "What is your name: " << name << endl;
	cin >> name;
	return 0;

}