PROC PRINT prints the output data set and uses the variable labels as column headers. The LABEL option causes PROC PRINT to print variable labels for column headers.
  proc print data=idlabel label noobs;
     title 'Student Test Scores';
  run;