/* Craig Persiko
   date.cpp
   Solution to in-class exercise in CS 110A
   A program to output today's date, using 
   at least two integer variables. 
*/

#include <iostream>
using namespace std;

int main()
{
  int day, year, month = 8;
  day = 30;
  year = 2011;

  cout << "Today's date is: August " << day << ", ";
  cout << year << endl;

  return 0;
}



syntax highlighted by Code2HTML, v. 0.9