#include <iostream>
#include <string>
using namespace std;

int main()
{
	//data declarations
	int numStudents;
	char grade;
	string courseName;

	cout << "How many are present? " << endl;
	cin >> numStudents;

	courseName = "EAS230A";

	grade = 'A';

	
	cout << numStudents << courseName << grade << endl;

	cout << numStudents << " of " << courseName
             << " are present here on 2/2/2005" << endl;
	cout << "They will probably get an " << grade << endl;
	
	return 0; // if you here it is normal completetion
}