PROC PRINT displays the FREQCNT data set. The TITLE statement specifies a title.
proc print data=freqcnt noobs;
   title2 'Output Data Set from PROC FREQ';
run;