The FIRSTOBS= and OBS=data set options would tell SAS to print observations 5 through 10 from the data set READIN.
proc print data = readin (firstobs=5 obs=10);
run;