Print the TOTSPLIT data set. The NOOBS options suppresses the printing of observation numbers. The OBS= data set option limits the printing to the first 15 observations. SPLIT has 105 observations.
proc print data=totsplit(obs=15) noobs; title 'TOTSPLIT Data Set'; title2 'First 15 Observations Only'; run;