proc print is possibly the first reporting procedures that is taught to the beginners in SAS.it is also the most simplest of the procedures to produce listings reports .there are several useful options to enhance the layout of the report output--
the proc print in simplest form --
data1;
input name$ age;
cards;
scott 31
tiger 21
mitchell 19
paula 23
;
run;
output of data1-;
proc print data=data1;
run;