PROC PRINT prints the CONTOURS data set. The OBS= data set option limits the printing to only the first 5 observations.
proc print data=contours(obs=5) noobs;
   title 'CONTOURS Data Set';
   title2 'First 5 Observations Only';
run;