PROC PRINT prints the PCTSCORE data set. The TITLE statement specifies a title.
proc print data=pctscore noobs;
   title1 'Quantile Statistics for Final Exam Scores';
   title2 'Output Data Set from PROC UNIVARIATE';
run;