data club; 
    infile datalines dsd delimiter=' ';
   input idno name $ team $ strtwght endwght; 
datalines; 
1023 'David S' red 189 165 
1049 'Amelia H' yellow 145 124 
1219 'Alan F' red 210 192 
1246 'Ravi S' yellow 194 177 
1078 'Ashley J' red 127 118 
1221 'Jim G' yellow 220 . 
; 
proc print; run;
         Obs    idno    name        team      strtwght    endwght
          1     1023    David S     red          189        165  
          2     1049    Amelia H    yellow       145        124  
          3     1219    Alan F      red          210        192  
          4     1246    Ravi S      yellow       194        177  
          5     1078    Ashley J    red          127        118  
          6     1221    Jim G       yellow       220          .