Print the IDLABEL data set. The LABEL option causes PROC PRINT to print variable labels for column headers. The NOOBS option suppresses the printing of observation numbers.
proc print data=idlabel label noobs; title 'Student Test Scores'; run;