/*
* Name: James Wibowo
* File Name: Hello.cpp
* Program: This program will display a hello message
* Date: 08/24/22
*/

#include <iostream>
using namespace std;

int main()
{
	string name = "James";
	int year;
	cout << "Hello " << name << "! Welcome to CSE 2010!\nWhat year is it?\n";
	cin >> year;
	cout << "It is the year " << year << "\n";
	return 0;
}
