/* SAS code to input data from the sample dataset. Change file path accordingly. */ data one; infile 'C:\...\sample.txt' firstobs=3 obs=42; input cat $ @@; data two; set one; infile 'C:\...\sample.txt' firstobs=44; input x1-x60; run;