Print the output data set WORK.SUMSTAT. The NOOBS option suppresses the observation numbers.


proc print data=sumstat noobs;
   title1 'Average Undergraduate and Graduate Course Grades';
   title2 'For Two Years';
run;