PROC SORT sorts the observations in descending order by the variables Exposure and Response.
proc sort data=fatcomp;
   by descending exposure descending response;
run;