SYSDATE is an automatic macro variable that returns the date when the
SAS job or SAS session began. The TITLE2 statement uses double rather than
single quotes so that the macro variable resolves.
title 'Sales for the Southeast Sector';
title2 "for &sysdate";
run;