Produce a report. PROC TABULATE creates the table of cars and their attributes.
proc tabulate data=two order=data ;
class model color luxury options perform;
table model*color*luxury*options*perform,n / indent=4 condense;
label model='MODEL CAR'
color='COLOR OF CAR'
luxury='CONDITION OF CAR'
perform='SPEED';
keylabel n='NUMBER';
run;