#include <iostream>
#include <string>
#include <sstream>
using namespace std;

int main() {
    ostringstream oss;
    oss << "December" << ' ' << 29 << ", " << string("2004")
	<< endl;
    string s = oss.str();
    cout << s;

    istringstream iss(s);
    string month;
    int day, year;
    iss >> month >> day;
    iss.get(); // discard ','
    iss >> year;
    cout << month << endl;
    cout << day << endl;
    cout << year << endl;
}
