You can change your 'Stuff =' line to the following:
Stuff = sprintf('%s %s is the %d day of the year.', Month,Date,N);
Or, you can replace that line and the following fprint line by this:
fprintf('%s %s is the %d day of the year.\n', Month,Date,N)
You should probably read the following documentation: