Print the data set. PROC PRINT prints the ORDER data set. The TITLE statement specifies a title.


proc print data=order;
   title "Rankings of Participants' Scores";
run;