PROC PRINT prints the COMBINED table. ROUND rounds the standardized values to two decimal places. The TITLE statement specifies a title.
proc print data=combined noobs round;
   title 'Standardized Test Scores for a College Course';
run;