PROC PRINT displays the CHISQDAT data set. The TITLE statement specifies a title.
proc print data=chisqdat noobs;
   title 'Chi-Square Statistics for Eye and Hair Color';
   title2 'Output Data Set from the FREQ Procedure';
run;