filename ps368 'ps368.dat';
options center linesize=76 nodate;
data;
infile ps368;
input @4 y x;
proc corr;
proc reg;
  model y = x;
run;
quit;