The OUTPUT statement creates the PCTSCORE data set with five variables. MEDIAN= saves the median. PCTLPTS= saves four percentiles. PCTLPRE= specifies a prefix name. PCTLNAME= specifies suffix names for the variables that contain the first three percentiles. The name of the variable that contains the 70th percentile uses the default suffix.
   output out=pctscore median=Median pctlpts=98 50 20 70
          pctlpre=Pctl_ pctlname=Top Mid Low;
   title 'Examining the Distribution of Final Exam Scores';
run;